ID: 6559
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Status: Open
Old-Bug Type: NIS related
Bug Type: YP/NIS related
Assigned To:
Comments:
Previous Comments:
---------------------------------------------------------------------------
[2000-09-05 14:31:58] [EMAIL PROTECTED]
The key/value pairs that libnsl's yp_first/yp_next return contain
a trailing NEWLINE as per NIS specs. These NEWLINEs are
not chopped off before returning the key/value pair to the users's PHP
code. Hence you end up with newlines in PHP hashes.
Below is the context diff for the fix.
regards,
Gert
*** yp.c.orig Mon Jun 5 21:47:45 2000
--- yp.c Tue Sep 5 19:37:54 2000
***************
*** 151,156 ****
--- 151,158 ----
RETURN_FALSE;
}
array_init(return_value);
+ outkey[outkeylen] = 0;
+ outval[outvallen] = 0;
add_assoc_string(return_value,"key",outkey,1);
add_assoc_string(return_value,"value",outval,1);
}
***************
*** 175,180 ****
--- 177,184 ----
RETURN_FALSE;
}
+ outkey[outkeylen] = 0;
+ outval[outvallen] = 0;
array_init(return_value);
add_assoc_string(return_value,outkey,outval,1);
}
---------------------------------------------------------------------------
Full Bug description available at: http://bugs.php.net/?id=6559
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]