diff options
author | Andi Gutmans <andi@php.net> | 2000-05-27 18:55:11 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2000-05-27 18:55:11 +0000 |
commit | afccb5861212d0931fcf61ef8f4e4141700025f2 (patch) | |
tree | 9efe7c70c54a847e0756ea8103f23714dda641ab /ext/standard/crypt.c | |
parent | 8c82566b48fc4ca837d83e1980f5cb681bb435ce (diff) | |
download | php-git-afccb5861212d0931fcf61ef8f4e4141700025f2.tar.gz |
- I'm not sure if PHP_NOT_IN_THIS_BUILD is the way to handle these
- functions but in any case I have changed it to PHP_NOT_IN_THIS_BUILD()
Diffstat (limited to 'ext/standard/crypt.c')
-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 801282bc76..3cc610c502 100644 --- a/ext/standard/crypt.c +++ b/ext/standard/crypt.c @@ -179,7 +179,7 @@ PHP_FUNCTION(crypt) return_value->type = IS_STRING; pval_copy_constructor(return_value); #else - PHP_NOT_IN_THIS_BUILD; + PHP_NOT_IN_THIS_BUILD(); #endif /* HAVE_CRYPT */ } /* }}} */ |