Skip to content

Commit 330eb18

Browse files
author
Steve Hay
committed
Remove use of deprecated symbol Nullav
This was done previously in r1362399 but a couple of uses crept back in via r1602099. git-svn-id: https://svn.apache.org/repos/asf/perl/modperl/trunk@1863518 13f79535-47bb-0310-9956-ffa450edef68
1 parent 635d035 commit 330eb18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/modules/perl/modperl_util.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -924,7 +924,7 @@ static authz_status perl_check_authorization(request_rec *r,
924924
{
925925
authz_status ret = AUTHZ_DENIED;
926926
int count;
927-
AV *args = Nullav;
927+
AV *args = (AV *)NULL;
928928
const char *key;
929929
auth_callback *ab;
930930
MP_dINTERPa(r, NULL, NULL);
@@ -1053,7 +1053,7 @@ static authn_status perl_check_password(request_rec *r, const char *user,
10531053
{
10541054
authn_status ret = AUTH_DENIED;
10551055
int count;
1056-
AV *args = Nullav;
1056+
AV *args = (AV *)NULL;
10571057
const char *key;
10581058
auth_callback *ab;
10591059
MP_dINTERPa(r, NULL, NULL);

0 commit comments

Comments
 (0)