From: Chuck Hagenbuch Date: Sun, 12 Mar 2000 20:02:41 +0000 (+0000) Subject: spelling correction, and rename make_event_object to _php_make_event_object X-Git-Tag: PHP-4.0-RC1~166 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20cc50db4cc5ebee4d2da7a1ea1677641b9ace3f;p=php spelling correction, and rename make_event_object to _php_make_event_object for consistency. --- diff --git a/ext/mcal/php_mcal.c b/ext/mcal/php_mcal.c index 3f6f606f5b..bf0f8c340d 100644 --- a/ext/mcal/php_mcal.c +++ b/ext/mcal/php_mcal.c @@ -259,7 +259,7 @@ void php_mcal_event_init(struct _php_mcal_le_struct *mystruct) mystruct->event=calevent_new(); } -void make_event_object(zval *myzvalue, CALEVENT *event) +void _php_make_event_object(zval *myzvalue, CALEVENT *event) { zval *start, *end, *recurend, *attrlist; CALATTR *attr; @@ -373,7 +373,7 @@ PHP_FUNCTION(mcal_open) /* }}} */ /* {{{ proto string mcal_popen(string calendar, string user, string password [, int options]) - Open a persistant MCAL stream to a calendar */ + Open a persistent MCAL stream to a calendar */ PHP_FUNCTION(mcal_popen) { php_mcal_do_open(INTERNAL_FUNCTION_PARAM_PASSTHRU, 0); @@ -475,7 +475,7 @@ PHP_FUNCTION(mcal_fetch_event) } calevent_free(mcal_le_struct->event); mcal_le_struct->event = myevent; - make_event_object(return_value, mcal_le_struct->event); + _php_make_event_object(return_value, mcal_le_struct->event); } /* }}} */ @@ -498,7 +498,7 @@ PHP_FUNCTION(mcal_fetch_current_stream_event) php_error(E_WARNING, "Unable to find stream pointer"); RETURN_FALSE; } - make_event_object(return_value, mcal_le_struct->event); + _php_make_event_object(return_value, mcal_le_struct->event); } /* }}} */