summaryrefslogtreecommitdiff
path: root/radsecproxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'radsecproxy.c')
-rw-r--r--radsecproxy.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c
index b074fc0..c06e57a 100644
--- a/radsecproxy.c
+++ b/radsecproxy.c
@@ -1019,8 +1019,10 @@ struct server *id2server(char *id, uint8_t len) {
#else
int i;
for (i = 0; i < realm_count; i++)
- if (!regexec(&realms[i].regex, id, 0, NULL, 0))
+ if (!regexec(&realms[i].regex, id, 0, NULL, 0)) {
+ debug(DBG_DBG, "found matching realm: %s, host %s", realms[i].name, realms[i].server->peer.host);
return realms[i].server;
+ }
return NULL;
#endif
}