From: Zeev Suraski Date: Tue, 31 Jul 2001 03:00:05 +0000 (+0000) Subject: build fixes X-Git-Tag: PRE_ENGINE2_SPLIT~171 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7bc71f442d7ddfecf43871b394c14100baa391b3;p=php build fixes --- 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);