diff options
-rw-r--r-- | radsecproxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index e8a50bf..b34ac11 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -529,7 +529,7 @@ struct peer *radsrv(struct request *rq, char *buf, struct peer *from) { for (i = 0; i < peer_count; i++) { for (realm = peers[i].realms; realm; realm++) { /* assume test@domain */ - if (!strcmp(usernameattr + 5, *realm)) { + if (!memcmp(usernameattr + 5, *realm, usernameattr[RAD_Attr_Length] - 5)) { printf("found matching realm: %s, host %s\n", *realm, peers[i].host); break; } |