summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Musone <musone@php.net>1999-08-17 16:55:01 +0000
committerMark Musone <musone@php.net>1999-08-17 16:55:01 +0000
commit01b178292eb654f79a1d1bbd557385635676c59e (patch)
treeca743751d015ec4941983e98772997257d584f2f
parentb9d17aaab4888f5bfdb1a70629c1d628fdf6dd2b (diff)
downloadphp-git-01b178292eb654f79a1d1bbd557385635676c59e.tar.gz
dont have these library functiosn yet
-rw-r--r--ext/icap/php3_icap.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ext/icap/php3_icap.c b/ext/icap/php3_icap.c
index 8591e7f4af..6f7f5bdd5c 100644
--- a/ext/icap/php3_icap.c
+++ b/ext/icap/php3_icap.c
@@ -306,8 +306,8 @@ void php3_icap_expunge(INTERNAL_FUNCTION_PARAMETERS)
RETURN_FALSE;
}
- cal_expunge (icap_le_struct->icap_stream);
-
+/* cal_expunge (icap_le_struct->icap_stream);
+*/
RETURN_TRUE;
}
/* }}} */
@@ -465,6 +465,7 @@ void php3_icap_create_calendar(INTERNAL_FUNCTION_PARAMETERS)
php3_error(E_WARNING, "Unable to find stream pointer");
RETURN_FALSE;
}
+/*
if (icap_create(icap_le_struct->icap_stream,calendar->value.str.val))
{
RETURN_TRUE;
@@ -473,6 +474,7 @@ void php3_icap_create_calendar(INTERNAL_FUNCTION_PARAMETERS)
{
RETURN_FALSE;
}
+*/
}
/* }}} */
@@ -499,8 +501,10 @@ void php3_icap_rename_calendar(INTERNAL_FUNCTION_PARAMETERS)
php3_error(E_WARNING, "Unable to find stream pointer");
RETURN_FALSE;
}
+/*
if(icap_rename(icap_le_struct->icap_stream,src_calendar->value.str.val,dest_calendar->value.str.val)) {RETURN_TRUE;}
else {RETURN_FALSE; }
+*/
}
/* }}} */