Skip to content

Commit

Permalink
Don't print a pointer when trying to print a string.
Browse files Browse the repository at this point in the history
  • Loading branch information
Linus Nordberg committed Jul 3, 2011
1 parent a951e84 commit b2d60de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion radsecproxy.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit b2d60de

Please sign in to comment.