From: pacman Date: Thu, 19 Oct 2000 04:19:36 +0000 (+0000) Subject: Missing address-of operator in call to pairdelete X-Git-Tag: release_0_1_0~629 X-Git-Url: http://www.project-moonshot.org/gitweb/?a=commitdiff_plain;h=aaeb459f0b0fc6ce4923ded8f7f4ba3efabb909d;p=freeradius.git Missing address-of operator in call to pairdelete --- diff --git a/src/main/auth.c b/src/main/auth.c index 8b98268..244e4b2 100644 --- a/src/main/auth.c +++ b/src/main/auth.c @@ -639,7 +639,7 @@ int rad_authenticate(REQUEST *request) tmp->lvalue = htonl(ntohl(tmp->lvalue) + nas_port); tmp->addport = 0; } - pairdelete(request->reply->vps, PW_ADD_PORT_TO_IP_ADDRESS); + pairdelete(&request->reply->vps, PW_ADD_PORT_TO_IP_ADDRESS); } }