diff options
author | Antony Dovgal <tony2001@php.net> | 2006-12-03 13:46:37 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-12-03 13:46:37 +0000 |
commit | 065be7056dbfa615d7db5729eb43eec024907c84 (patch) | |
tree | 5367339d5ccf9cafb39c9e5098b0771364b48601 | |
parent | f61b9635ba68805ee419a287ef0fe9d564bcb812 (diff) | |
download | php-git-065be7056dbfa615d7db5729eb43eec024907c84.tar.gz |
MFH: fix AIX build
-rw-r--r-- | ext/standard/crypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/crypt.c b/ext/standard/crypt.c index 9b06de8070..1e138c775f 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -149,7 +149,7 @@ PHP_FUNCTION(crypt) { struct crypt_data buffer; memset(&buffer, 0, sizeof(buffer)); - RETURN_STRING(crypt_r(str, salt, &buffer)); + RETURN_STRING(crypt_r(str, salt, &buffer), 1); } #else RETURN_STRING(crypt(str, salt), 1); |