fix for -v from Juergen Kammer
authorbodea <bodea>
Mon, 12 Jul 2004 15:16:27 +0000 (15:16 +0000)
committerbodea <bodea>
Mon, 12 Jul 2004 15:16:27 +0000 (15:16 +0000)
Changes
l2tpns.c

diff --git a/Changes b/Changes
index 87fa04b..872165f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+* ??? 2.0.2
+- Apply patch to fix -v option from Juergen Kammer.
+
 * Tue Jul 13 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.1
 - Update INSTALL, Docs/manual.html documentation.
 - Add INTERNALS documentation.
index f4ffde9..51aec99 100644 (file)
--- a/l2tpns.c
+++ b/l2tpns.c
@@ -4,7 +4,7 @@
 // Copyright (c) 2002 FireBrick (Andrews & Arnold Ltd / Watchfront Ltd) - GPL licenced
 // vim: sw=8 ts=8
 
-char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.14 2004/07/12 08:21:45 bodea Exp $";
+char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.15 2004/07/12 15:16:27 bodea Exp $";
 
 #include <arpa/inet.h>
 #include <assert.h>
@@ -2837,6 +2837,7 @@ void dump_acct_info()
 int main(int argc, char *argv[])
 {
        int o;
+       int optdebug = 0;
 
        _program_name = strdup(argv[0]);
 
@@ -2853,7 +2854,7 @@ int main(int argc, char *argv[])
                                if (fork()) exit(0);
                                break;
                        case 'v':
-                               config->debug++;
+                               optdebug++;
                                break;
                        case 'h':
                                snprintf(hostname, sizeof(hostname), "%s", optarg);
@@ -2881,6 +2882,9 @@ int main(int argc, char *argv[])
        initiptables();
        initplugins();
        initdata();
+
+       config->debug = optdebug;
+
        init_tbf();
        init_cli(hostname);
        read_config_file();