wez Wed Jan 1 06:21:40 2003 EDT
Modified files:
/php4/ext/standard filters.c
Log:
Tidy up
Index: php4/ext/standard/filters.c
diff -u php4/ext/standard/filters.c:1.1 php4/ext/standard/filters.c:1.2
--- php4/ext/standard/filters.c:1.1 Wed Jan 1 06:04:44 2003
+++ php4/ext/standard/filters.c Wed Jan 1 06:21:40 2003
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: filters.c,v 1.1 2003/01/01 11:04:44 wez Exp $ */
+/* $Id: filters.c,v 1.2 2003/01/01 11:21:40 wez Exp $ */
#include "php.h"
#include "php_globals.h"
@@ -97,9 +97,11 @@
php_stream_filter_factory *factory;
} standard_filters[] = {
{ &strfilter_rot13_ops, &strfilter_rot13_factory },
+ /* additional filters to go here */
{ NULL, NULL }
};
+/* {{{ filter MINIT and MSHUTDOWN */
PHP_MINIT_FUNCTION(standard_filters)
{
int i;
@@ -112,7 +114,6 @@
return FAILURE;
}
}
-
return SUCCESS;
}
@@ -125,6 +126,7 @@
}
return SUCCESS;
}
+/* }}} */
/*
* Local variables:
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php