summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoian Bonev <bbonev@php.net>2001-05-24 10:38:17 +0000
committerBoian Bonev <bbonev@php.net>2001-05-24 10:38:17 +0000
commit9caffb4fb7092bd699f8735ce2ddaa17aeb5acb5 (patch)
tree196db2022a3c48982432039af2d05536776decbf
parent312290a2c4e7e7476078675d922bccc97079a310 (diff)
downloadphp-git-9caffb4fb7092bd699f8735ce2ddaa17aeb5acb5.tar.gz
fixed prototypes
-rw-r--r--ext/vpopmail/README4
-rw-r--r--ext/vpopmail/php_vpopmail.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ext/vpopmail/README b/ext/vpopmail/README
index 4e5a09db89..a47c9b0f56 100644
--- a/ext/vpopmail/README
+++ b/ext/vpopmail/README
@@ -177,6 +177,10 @@ bool vpopmail_del_user(string user, string domain)
bool vpopmail_passwd(string user, string domain, string password)
bool vpopmail_set_user_quota(string user, string domain, string quota)
bool vpopmail_auth_user(string user, string domain, string password[, string apop])
+bool vpopmail_alias_add(string user, string domain, string alias)
+bool vpopmail_alias_del(string user, string domain)
+bool vpopmail_alias_del_domain(string domain)
+array vpopmail_alias_get(string alias, string domain)
string vpopmail_error(void)
diff --git a/ext/vpopmail/php_vpopmail.c b/ext/vpopmail/php_vpopmail.c
index 4c30d4c42c..d1a3874549 100644
--- a/ext/vpopmail/php_vpopmail.c
+++ b/ext/vpopmail/php_vpopmail.c
@@ -844,7 +844,7 @@ PHP_FUNCTION(vpopmail_alias_del_domain)
}
/* }}} */
-/* {{{ proto bool vpopmail_alias_get(string alias, string domain)
+/* {{{ proto array vpopmail_alias_get(string alias, string domain)
get all lines of an alias for a domain */
PHP_FUNCTION(vpopmail_alias_get)
{