diff options
author | Boian Bonev <bbonev@php.net> | 2001-01-27 00:25:09 +0000 |
---|---|---|
committer | Boian Bonev <bbonev@php.net> | 2001-01-27 00:25:09 +0000 |
commit | 5f89c6892f0bb02e23b6476cbff7ca2edc84b8ff (patch) | |
tree | 8e7d108bdf408234b36a81d6540b4e29640f1937 /ext/vpopmail/php_vpopmail.c | |
parent | 416f4b7e956eafd822fbceff1d5bb81026645d7c (diff) | |
download | php-git-5f89c6892f0bb02e23b6476cbff7ca2edc84b8ff.tar.gz |
# fixed protos in comments for *_ex functions
Diffstat (limited to 'ext/vpopmail/php_vpopmail.c')
-rw-r--r-- | ext/vpopmail/php_vpopmail.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/vpopmail/php_vpopmail.c b/ext/vpopmail/php_vpopmail.c index 8d3367cdc1..db51817f9c 100644 --- a/ext/vpopmail/php_vpopmail.c +++ b/ext/vpopmail/php_vpopmail.c @@ -285,7 +285,7 @@ PHP_FUNCTION(vpopmail_add_alias_domain) * Domain management functions - exec */ -/* {{{ proto int vpopmail_add_domain_ex(string domain, string passwd [, string quota [, string bounce [, bool apop]]]) +/* {{{ proto bool vpopmail_add_domain_ex(string domain, string passwd [, string quota [, string bounce [, bool apop]]]) Add a new virtual domain */ PHP_FUNCTION(vpopmail_add_domain_ex) { zval **domain, **passwd, **quota, **bounce, **apop; @@ -411,7 +411,7 @@ PHP_FUNCTION(vpopmail_add_domain_ex) { } /* }}} */ -/* {{{ proto int vpopmail_del_domain_ex(string domain) +/* {{{ proto bool vpopmail_del_domain_ex(string domain) Delete a virtual domain */ PHP_FUNCTION(vpopmail_del_domain_ex) { zval **domain; @@ -455,7 +455,7 @@ PHP_FUNCTION(vpopmail_del_domain_ex) { } /* }}} */ -/* {{{ proto int vpopmail_add_alias_domain_ex(string olddomain, string newdomain) +/* {{{ 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) { zval **olddomain, **newdomain; |