summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorMark Musone <musone@php.net>1999-08-09 21:39:29 +0000
committerMark Musone <musone@php.net>1999-08-09 21:39:29 +0000
commitf0552d929f860af88cb23d3d86353b88540b452e (patch)
treef66b1e2ff46d28cb857ba3fa0aa01b949ef7924b /ext
parentc3563714372b9f55307cea19eb2a1f44fe173f74 (diff)
downloadphp-git-f0552d929f860af88cb23d3d86353b88540b452e.tar.gz
ports to php4
Diffstat (limited to 'ext')
-rw-r--r--ext/icap/php3_icap.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/icap/php3_icap.c b/ext/icap/php3_icap.c
index bdecd09738..64281909be 100644
--- a/ext/icap/php3_icap.c
+++ b/ext/icap/php3_icap.c
@@ -368,7 +368,7 @@ void php3_icap_fetch_event(INTERNAL_FUNCTION_PARAMETERS)
void php3_icap_list_events(INTERNAL_FUNCTION_PARAMETERS)
{
pval *streamind,*begindate,*enddate;
- pval *pvalue;
+ pval **pvalue;
int ind, ind_type;
unsigned long i;
char *t;
@@ -511,7 +511,7 @@ void php3_icap_rename_calendar(INTERNAL_FUNCTION_PARAMETERS)
void php3_icap_list_alarms(INTERNAL_FUNCTION_PARAMETERS)
{
pval *streamind, *date,*time;
- pval *pvalue;
+ pval **pvalue;
caldate_t mydate;
caltime_t mytime;
int ind, ind_type;
@@ -689,7 +689,7 @@ void php3_icap_store_event(INTERNAL_FUNCTION_PARAMETERS)
int icap_folders=0;
unsigned int msgno;
pils *icap_le_struct;
- pval *pvalue;
+ pval **pvalue;
cal_list_t *my_cal_list;
int myargc;
int uid;
@@ -791,7 +791,7 @@ void php3_icap_snooze(INTERNAL_FUNCTION_PARAMETERS)
pval *streamind,*uid;
int ind, ind_type;
pils *icap_le_struct;
- pval *pvalue;
+ pval **pvalue;
int myargc;
myargc=ARG_COUNT(ht);
if (myargc !=2 || getParameters(ht,myargc,&streamind,&uid) == FAILURE) {