Skip to content

Commit 719664d

Browse files
committed
fixed compilation error
1 parent 1b8bf05 commit 719664d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/ldap/ldap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2252,7 +2252,7 @@ PHP_FUNCTION(ldap_set_option)
22522252
struct timeval timeout;
22532253

22542254
convert_to_long_ex(newval);
2255-
timeout.tv_sec = Z_LVAL_PP(newval);
2255+
timeout.tv_sec = Z_LVAL_P(newval);
22562256
timeout.tv_usec = 0;
22572257
if (ldap_set_option(ldap, LDAP_OPT_TIMEOUT, (void *) &timeout)) {
22582258
RETURN_FALSE;

0 commit comments

Comments
 (0)