]> granicus.if.org Git - php/commitdiff
# fixed protos in comments for *_ex functions
authorBoian Bonev <bbonev@php.net>
Sat, 27 Jan 2001 00:25:09 +0000 (00:25 +0000)
committerBoian Bonev <bbonev@php.net>
Sat, 27 Jan 2001 00:25:09 +0000 (00:25 +0000)
ext/vpopmail/php_vpopmail.c

index 8d3367cdc15868f89f158315b692a9455a4af81c..db51817f9ce367ee412f42b942f161fe6b7f9272 100644 (file)
@@ -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;