diff options
Diffstat (limited to 'radsecproxy.c')
-rw-r--r-- | radsecproxy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index b7b2063..126a0a7 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -1638,9 +1638,8 @@ void replyh(struct server *server, unsigned char *buf) { } gettimeofday(&server->lastreply, NULL); - from = rqout->rq->from; - if (server->conf->rewritein && !dorewrite(msg, from->conf->rewritein)) { + if (server->conf->rewritein && !dorewrite(msg, server->conf->rewritein)) { debug(DBG_INFO, "replyh: rewritein failed"); goto errunlock; } @@ -1651,6 +1650,8 @@ void replyh(struct server *server, unsigned char *buf) { goto errunlock; } + from = rqout->rq->from; + /* MS MPPE */ for (node = list_first(msg->attrs); node; node = list_next(node)) { attr = (struct tlv *)node->data; |