andi Mon Feb 12 07:47:38 2001 EDT
Modified files:
/php4/main safe_mode.c
Log:
- Fix warning
PR:
Submitted by:
Reviewed by:
Obtained from:
Index: php4/main/safe_mode.c
diff -u php4/main/safe_mode.c:1.25 php4/main/safe_mode.c:1.26
--- php4/main/safe_mode.c:1.25 Tue Jan 9 03:58:57 2001
+++ php4/main/safe_mode.c Mon Feb 12 07:47:38 2001
@@ -15,7 +15,7 @@
| Authors: Rasmus Lerdorf <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: safe_mode.c,v 1.25 2001/01/09 11:58:57 thies Exp $ */
+/* $Id: safe_mode.c,v 1.26 2001/02/12 15:47:38 andi Exp $ */
#include "php.h"
@@ -124,7 +124,7 @@
SLS_FETCH();
if (SG(rfc1867_uploaded_files)) {
- if
(zend_hash_exists(SG(rfc1867_uploaded_files),filename,strlen(filename)+1)) {
+ if (zend_hash_exists(SG(rfc1867_uploaded_files), (char *)
+filename, strlen(filename)+1)) {
return 1;
}
}
--
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]