diff options
author | venaas <venaas> | 2007-06-13 11:08:00 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2007-06-13 11:08:00 +0000 |
commit | 8e3a6497a2833f50c803c4651e4e25c991ab1057 (patch) | |
tree | 845c0dd9596f1bb661785623348632a67da15b25 /radsecproxy.c | |
parent | f4921bf85b87cfa641878160b9b6525eaef25d3d (diff) |
fixed syslog url syntax, updated example config and added manpages. this may be the alpha-p1 release unless other log messages for alpha-p1 follows
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.0@131 e88ac4ed-0b26-0410-9574-a7f39faa03bf
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index c8a6340..f23d6ac 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -2264,7 +2264,7 @@ void getargs(int argc, char **argv, uint8_t *foreground, uint8_t *loglevel, char *foreground = 1; break; case 'v': - debugx(0, DBG_ERR, "radsecproxy 1.0-alpha"); + debugx(0, DBG_ERR, "radsecproxy 1.0-alpha-p1"); default: goto usage; } @@ -2288,7 +2288,7 @@ int main(int argc, char **argv) { getargs(argc, argv, &foreground, &loglevel, &configfile); if (loglevel) debug_set_level(loglevel); - debug(DBG_INFO, "radsecproxy 1.0-alpha starting"); + debug(DBG_INFO, "radsecproxy 1.0-alpha-p1 starting"); getmainconfig(configfile ? configfile : CONFIG_MAIN); if (loglevel) options.loglevel = loglevel; @@ -2298,7 +2298,7 @@ int main(int argc, char **argv) { options.logdestination = NULL; else { if (!options.logdestination) - options.logdestination = "x-syslog://"; + options.logdestination = "x-syslog:///"; debug_set_destination(options.logdestination); } |