summaryrefslogtreecommitdiff
path: root/ext/standard/exec.c
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>1999-09-04 13:18:59 +0000
committerZeev Suraski <zeev@php.net>1999-09-04 13:18:59 +0000
commitc12d4bc7d46654c526ba94f48ff49c88b2838a91 (patch)
tree97dacc1f998ce47567a79098c0b50a709e5f6628 /ext/standard/exec.c
parent6d4ab7372df97b2200a041a9e9fb093f92946797 (diff)
downloadphp-git-c12d4bc7d46654c526ba94f48ff49c88b2838a91.tar.gz
*** empty log message ***
Diffstat (limited to 'ext/standard/exec.c')
-rw-r--r--ext/standard/exec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/exec.c b/ext/standard/exec.c
index df0d3f9cd8..50de415568 100644
--- a/ext/standard/exec.c
+++ b/ext/standard/exec.c
@@ -196,7 +196,7 @@ static int _Exec(int type, char *cmd, pval *array, pval *return_value)
if (PG(magic_quotes_runtime) && type!=3) {
int len;
- tmp = _php3_addslashes(buf, 0, &len, 0);
+ tmp = php_addslashes(buf, 0, &len, 0);
RETVAL_STRINGL(tmp,len,0);
} else {
RETVAL_STRING(buf,1);