projects
/
l2tpns.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
6a05ab1
)
fix for -v from Juergen Kammer
author
bodea
<bodea>
Mon, 12 Jul 2004 15:16:27 +0000
(15:16 +0000)
committer
bodea
<bodea>
Mon, 12 Jul 2004 15:16:27 +0000
(15:16 +0000)
Changes
patch
|
blob
|
history
l2tpns.c
patch
|
blob
|
history
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.
* Tue Jul 13 2004 Brendan O'Dea <bod@optusnet.com.au> 2.0.1
- Update INSTALL, Docs/manual.html documentation.
- Add INTERNALS documentation.
diff --git
a/l2tpns.c
b/l2tpns.c
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
// 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.1
4 2004/07/12 08:21:45
bodea Exp $";
+char const *cvs_id_l2tpns = "$Id: l2tpns.c,v 1.1
5 2004/07/12 15:16:27
bodea Exp $";
#include <arpa/inet.h>
#include <assert.h>
#include <arpa/inet.h>
#include <assert.h>
@@
-2837,6
+2837,7
@@
void dump_acct_info()
int main(int argc, char *argv[])
{
int o;
int main(int argc, char *argv[])
{
int o;
+ int optdebug = 0;
_program_name = strdup(argv[0]);
_program_name = strdup(argv[0]);
@@
-2853,7
+2854,7
@@
int main(int argc, char *argv[])
if (fork()) exit(0);
break;
case 'v':
if (fork()) exit(0);
break;
case 'v':
-
config->
debug++;
+
opt
debug++;
break;
case 'h':
snprintf(hostname, sizeof(hostname), "%s", optarg);
break;
case 'h':
snprintf(hostname, sizeof(hostname), "%s", optarg);
@@
-2881,6
+2882,9
@@
int main(int argc, char *argv[])
initiptables();
initplugins();
initdata();
initiptables();
initplugins();
initdata();
+
+ config->debug = optdebug;
+
init_tbf();
init_cli(hostname);
read_config_file();
init_tbf();
init_cli(hostname);
read_config_file();