diff options
author | venaas <venaas> | 2008-05-26 08:11:08 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-05-26 08:11:08 +0000 |
commit | 47e225a89b5f724b6912e0bfff1f04ccf35e3974 (patch) | |
tree | fc660631ce0639472c8122d9d2706496fe3c5341 /radsecproxy.c | |
parent | ed40053fa21f5bf377faaf694af50be4b7f30891 (diff) |
print address when receiving UDP from address
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/trunk@259 e88ac4ed-0b26-0410-9574-a7f39faa03bf
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 33f4673..16fb076 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -606,7 +606,7 @@ unsigned char *radudpget(int s, struct client **client, struct server **server, p = find_conf('U', (struct sockaddr *)&from, srvconfs, NULL); if (!p) { - debug(DBG_WARN, "radudpget: got packet from wrong or unknown UDP peer, ignoring"); + debug(DBG_WARN, "radudpget: got packet from wrong or unknown UDP peer %s, ignoring", addr2string((struct sockaddr *)&from, fromlen)); continue; } |