summaryrefslogtreecommitdiff
path: root/radsecproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.c')
-rw-r--r--radsecproxy.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c
index fafa506..77f97d5 100644
--- a/radsecproxy.c
+++ b/radsecproxy.c
@@ -2345,7 +2345,6 @@ int main(int argc, char **argv) {
getargs(argc, argv, &foreground, &loglevel, &configfile);
if (loglevel)
debug_set_level(loglevel);
- debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
getmainconfig(configfile ? configfile : CONFIG_MAIN);
if (loglevel)
options.loglevel = loglevel;
@@ -2368,6 +2367,8 @@ int main(int argc, char **argv) {
if (!foreground && (daemon(0, 0) < 0))
debugx(1, DBG_ERR, "daemon() failed: %s", strerror(errno));
+
+ debug(DBG_INFO, "radsecproxy revision $Rev$ starting");
if (client_udp_count) {
udp_server_listen = server_create('U');