andi Wed Mar 21 12:07:18 2001 EDT
Modified files:
/php4/ext/pfpro pfpro.c php_pfpro.h
Log:
- Fix spelling error
Index: php4/ext/pfpro/pfpro.c
diff -u php4/ext/pfpro/pfpro.c:1.9 php4/ext/pfpro/pfpro.c:1.10
--- php4/ext/pfpro/pfpro.c:1.9 Sun Feb 25 22:07:12 2001
+++ php4/ext/pfpro/pfpro.c Wed Mar 21 12:07:18 2001
@@ -17,7 +17,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: pfpro.c,v 1.9 2001/02/26 06:07:12 andi Exp $ */
+/* $Id: pfpro.c,v 1.10 2001/03/21 20:07:18 andi Exp $ */
/* {{{ includes */
#include "php.h"
@@ -97,7 +97,7 @@
{
PFPROLS_FETCH();
- PFPROG(initialised) = 0;
+ PFPROG(initialized) = 0;
return SUCCESS;
}
@@ -106,7 +106,7 @@
{
PFPROLS_FETCH();
- if (PFPROG(initialised) == 1) {
+ if (PFPROG(initialized) == 1) {
PNCleanup();
}
@@ -150,7 +150,7 @@
PNInit();
- PFPROG(initialised) = 1;
+ PFPROG(initialized) = 1;
RETURN_TRUE;
}
@@ -168,7 +168,7 @@
PNCleanup();
- PFPROG(initialised) = 0;
+ PFPROG(initialized) = 0;
RETURN_TRUE;
}
@@ -275,9 +275,9 @@
/* Initialise the library if needed */
- if (PFPROG(initialised) == 0) {
+ if (PFPROG(initialized) == 0) {
PNInit();
- PFPROG(initialised) = 1;
+ PFPROG(initialized) = 1;
}
/* Perform the transaction */
@@ -520,9 +520,9 @@
/* Initialise the library if needed */
- if (PFPROG(initialised) == 0) {
+ if (PFPROG(initialized) == 0) {
PNInit();
- PFPROG(initialised) = 1;
+ PFPROG(initialized) = 1;
}
/* Perform the transaction */
Index: php4/ext/pfpro/php_pfpro.h
diff -u php4/ext/pfpro/php_pfpro.h:1.6 php4/ext/pfpro/php_pfpro.h:1.7
--- php4/ext/pfpro/php_pfpro.h:1.6 Sun Feb 25 22:07:12 2001
+++ php4/ext/pfpro/php_pfpro.h Wed Mar 21 12:07:18 2001
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: php_pfpro.h,v 1.6 2001/02/26 06:07:12 andi Exp $ */
+/* $Id: php_pfpro.h,v 1.7 2001/03/21 20:07:18 andi Exp $ */
#ifndef PHP_PFPRO_H
#define PHP_PFPRO_H
@@ -46,7 +46,7 @@
typedef struct {
int le_pfpro;
- int initialised;
+ int initialized;
char *defaulthost;
int defaultport;
int defaulttimeout;
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]