From 8e3a6497a2833f50c803c4651e4e25c991ab1057 Mon Sep 17 00:00:00 2001 From: venaas Date: Wed, 13 Jun 2007 11:08:00 +0000 Subject: 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 --- radsecproxy.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'radsecproxy.c') 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); } -- cgit v1.1