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:05:05 +0200 |
commit | b2d60ded2fd5ef977c1d3599ba993fb70bcca72c (patch) | |
tree | e6ed79e94a9c8fcb500e1e48ae92a9a8c13cccf7 | |
parent | a951e8483abcc57f8ba42d6ad1bed56e7bb1e56a (diff) |
Don't print a pointer when trying to print a string.
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index f026fee..130d6f0 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -2789,7 +2789,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; } |