summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZeev Suraski <zeev@php.net>2001-07-31 03:00:05 +0000
committerZeev Suraski <zeev@php.net>2001-07-31 03:00:05 +0000
commit7bc71f442d7ddfecf43871b394c14100baa391b3 (patch)
tree2532333fab26749e4c76ad2288b5e524812957b5
parente629be7b5b9546ba5ce15accc6978a2dddb2e5a4 (diff)
downloadphp-git-7bc71f442d7ddfecf43871b394c14100baa391b3.tar.gz
build fixes
-rw-r--r--ext/vpopmail/php_vpopmail.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/vpopmail/php_vpopmail.c b/ext/vpopmail/php_vpopmail.c
index 291edcae23..769e269439 100644
--- a/ext/vpopmail/php_vpopmail.c
+++ b/ext/vpopmail/php_vpopmail.c
@@ -405,7 +405,7 @@ PHP_FUNCTION(vpopmail_add_domain_ex)
strcat(cmd,escdomain);
strcat(cmd," ");
strcat(cmd,escpasswd);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(cmd);
efree(escdomain);
efree(escpasswd);
@@ -452,7 +452,7 @@ PHP_FUNCTION(vpopmail_del_domain_ex) {
RETURN_FALSE;
}
sprintf(cmd,VPOPMAIL_BIN_DIR VPOPMAIL_DELD"%s",escdomain);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(escdomain);
efree(cmd);
@@ -503,7 +503,7 @@ PHP_FUNCTION(vpopmail_add_alias_domain_ex) {
RETURN_FALSE;
}
sprintf(cmd,"%s%s %s",VPOPMAIL_BIN_DIR VPOPMAIL_ADAD,escolddomain,escnewdomain);
- retval=php_Exec(0,cmd,NULL,return_value);
+ retval=php_Exec(0,cmd,NULL,return_value TSRMLS_CC);
efree(cmd);
efree(escnewdomain);
efree(escolddomain);