diff options
author | Linus Nordberg <linus@nordu.net> | 2011-07-03 13:02:32 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordu.net> | 2011-07-03 13:02:32 +0200 |
commit | 7b25f269396eec809b29f7c4867225b10bb69629 (patch) | |
tree | 44395fd65ae0ee1019222cbc2e301b1893826ac1 /radsecproxy.c | |
parent | 05fe8725e304ebedff7a86dcfe982222475bfadd (diff) |
Don't print a pointer when trying to print a string.
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 02e4b70..755cc29 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -2797,7 +2797,7 @@ int compileserverconfig(struct clsrvconf *conf, const char *block) { conf->rewriteout = getrewrite(conf->confrewriteout, NULL); if (!addhostport(&conf->hostports, conf->hostsrc, conf->portsrc, 0)) { - debug(DBG_ERR, "error in block %s, failed to parse %s", block, conf->hostsrc); + debug(DBG_ERR, "error in block %s, failed to parse %s", block, *conf->hostsrc); return 0; } |