Changeset 83

Show
Ignore:
Timestamp:
18.10.2002 21:42:23 (6 years ago)
Author:
tibob
Message:

* fixed -c
* 0.11.5rc1 release

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/HISTORY

    r80 r83  
    1 Version 0.11.5pre3 
     1Version 0.11.5rc1 - 18 october 2002 
     2----------------- 
     3- fixed -c option broken while adding command line configuration for pid [RC] 
     4 
     5Version 0.11.5pre3 - 6 october 2002 
    26------------------ 
    37- typos in ipfm.conf.sample (Fixes Debian Bug #146409) 
    48- pid configurable through command line [RC, looking at Loic Tortay's patch for pid configurable through configfile] 
    59- various minor fixes [LT, RC] 
    6 - Sould work under solaris now 
     10- should work under solaris now 
    711 
    8 Version 0.11.5pre2 
     12Version 0.11.5pre2 - 21 april 2002 
    913------------------ 
    1014- IPFM uses now only UTC (it was an awful mix between local time an UTC before) [RC] 
    1115 
    12 Version 0.11.5pre1 
     16Version 0.11.5pre1 - 13 february 2002 
    1317------------------ 
    1418- a forked child exits with _exit(), so we can let pcap library set 
  • trunk/VERSION

    r75 r83  
    1 0.11.5pre3 
     10.11.5rc1 
  • trunk/source/init.c

    r75 r83  
    108108 
    109109#ifdef __OS_LINUX__ 
    110   while (EOF != (ch = getopt_long(argc, argv, "hncp:", long_options, 
     110  while (EOF != (ch = getopt_long(argc, argv, "hnc:p:", long_options, 
    111111                                 &option_index))) { 
    112112#else 
    113   while (EOF != (ch = getopt(argc, argv, "hncp:"))) { 
     113  while (EOF != (ch = getopt(argc, argv, "hnc:p:"))) { 
    114114#endif /* __OS_LINUX__ */ 
    115115    switch(ch) {