diff options
| author | Zeev Suraski <zeev@php.net> | 2001-08-05 01:43:02 +0000 | 
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-08-05 01:43:02 +0000 | 
| commit | 1159c84ab7849099d4a717cd05c2d920102040ed (patch) | |
| tree | ed4e48bb27e2ce5de5972fc3a29c1d24c818467a /ext/vpopmail/php_vpopmail.c | |
| parent | fcc035108f7b8d2e169c5a592227b3df84d0573e (diff) | |
| download | php-git-1159c84ab7849099d4a717cd05c2d920102040ed.tar.gz | |
- TSRMLS_FETCH work
- whitespace fixes
Diffstat (limited to 'ext/vpopmail/php_vpopmail.c')
| -rw-r--r-- | ext/vpopmail/php_vpopmail.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/vpopmail/php_vpopmail.c b/ext/vpopmail/php_vpopmail.c index 769e269439..74b466f992 100644 --- a/ext/vpopmail/php_vpopmail.c +++ b/ext/vpopmail/php_vpopmail.c @@ -427,7 +427,8 @@ PHP_FUNCTION(vpopmail_add_domain_ex)  /* {{{ proto bool vpopmail_del_domain_ex(string domain)     Delete a virtual domain */ -PHP_FUNCTION(vpopmail_del_domain_ex) { +PHP_FUNCTION(vpopmail_del_domain_ex) +{  	zval **domain;  	int retval=-1;  	char *cmd,*escdomain; @@ -469,7 +470,8 @@ PHP_FUNCTION(vpopmail_del_domain_ex) {  /* {{{ proto bool vpopmail_add_alias_domain_ex(string olddomain, string newdomain)     Add alias to an existing virtual domain */ -PHP_FUNCTION(vpopmail_add_alias_domain_ex) { +PHP_FUNCTION(vpopmail_add_alias_domain_ex) +{  	zval **olddomain, **newdomain;  	int retval;  	char *cmd,*escolddomain,*escnewdomain;  | 
