Changeset 83
Legend:
- Unmodified
- Added
- Removed
-
trunk/HISTORY
r80 r83 1 Version 0.11.5pre3 1 Version 0.11.5rc1 - 18 october 2002 2 ----------------- 3 - fixed -c option broken while adding command line configuration for pid [RC] 4 5 Version 0.11.5pre3 - 6 october 2002 2 6 ------------------ 3 7 - typos in ipfm.conf.sample (Fixes Debian Bug #146409) 4 8 - pid configurable through command line [RC, looking at Loic Tortay's patch for pid configurable through configfile] 5 9 - various minor fixes [LT, RC] 6 - Sould work under solaris now10 - should work under solaris now 7 11 8 Version 0.11.5pre2 12 Version 0.11.5pre2 - 21 april 2002 9 13 ------------------ 10 14 - IPFM uses now only UTC (it was an awful mix between local time an UTC before) [RC] 11 15 12 Version 0.11.5pre1 16 Version 0.11.5pre1 - 13 february 2002 13 17 ------------------ 14 18 - a forked child exits with _exit(), so we can let pcap library set -
trunk/VERSION
r75 r83 1 0.11.5 pre31 0.11.5rc1 -
trunk/source/init.c
r75 r83 108 108 109 109 #ifdef __OS_LINUX__ 110 while (EOF != (ch = getopt_long(argc, argv, "hnc p:", long_options,110 while (EOF != (ch = getopt_long(argc, argv, "hnc:p:", long_options, 111 111 &option_index))) { 112 112 #else 113 while (EOF != (ch = getopt(argc, argv, "hnc p:"))) {113 while (EOF != (ch = getopt(argc, argv, "hnc:p:"))) { 114 114 #endif /* __OS_LINUX__ */ 115 115 switch(ch) {
