diff options
author | Chuck Hagenbuch <chagenbu@php.net> | 2000-03-12 20:02:41 +0000 |
---|---|---|
committer | Chuck Hagenbuch <chagenbu@php.net> | 2000-03-12 20:02:41 +0000 |
commit | 20cc50db4cc5ebee4d2da7a1ea1677641b9ace3f (patch) | |
tree | 38abd4818e8778dea0eb3d8bd24814c94e8d48b4 /ext/mcal/php_mcal.c | |
parent | bd1140e71de5cb77c7fe34a2169daeeff851a3a0 (diff) | |
download | php-git-20cc50db4cc5ebee4d2da7a1ea1677641b9ace3f.tar.gz |
spelling correction, and rename make_event_object to _php_make_event_object
for consistency.
Diffstat (limited to 'ext/mcal/php_mcal.c')
-rw-r--r-- | ext/mcal/php_mcal.c | 8 |
1 files changed, 4 insertions, 4 deletions
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); } /* }}} */ |