sniper Sun Apr 17 09:27:18 2005 EDT
Modified files: (Branch: PHP_4_3)
/php-src NEWS
/php-src/ext/crack crack.c
Log:
- Fixed bug #32730 (ext/crack.c fails to compile with cracklib-2.8.3)
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.880&r2=1.1247.2.881&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.880 php-src/NEWS:1.1247.2.881
--- php-src/NEWS:1.1247.2.880 Sat Apr 16 23:39:38 2005
+++ php-src/NEWS Sun Apr 17 09:27:17 2005
@@ -5,6 +5,7 @@
them sort based on the current locale. (Derick)
- Changed sha1_file() and md5_file() functions to use streams instead of
low level IO. (Uwe)
+- Fixed bug #32730 (ext/crack.c fails to compile with cracklib-2.8.3). (Jani)
- Fixed bug #32699 (pg_affected_rows() was defined when it was not available).
(Derick)
- Fixed bug #32682 (ext/mssql: Error on module shutdown when called from
http://cvs.php.net/diff.php/php-src/ext/crack/crack.c?r1=1.18.8.4&r2=1.18.8.5&ty=u
Index: php-src/ext/crack/crack.c
diff -u php-src/ext/crack/crack.c:1.18.8.4 php-src/ext/crack/crack.c:1.18.8.5
--- php-src/ext/crack/crack.c:1.18.8.4 Thu Dec 30 22:16:50 2004
+++ php-src/ext/crack/crack.c Sun Apr 17 09:27:18 2005
@@ -15,7 +15,7 @@
| Authors: Alexander Feldman |
+----------------------------------------------------------------------+
*/
-/* $Id: crack.c,v 1.18.8.4 2004/12/31 03:16:50 iliaa Exp $ */
+/* $Id: crack.c,v 1.18.8.5 2005/04/17 13:27:18 sniper Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
@@ -29,6 +29,10 @@
#include <packer.h>
+#ifndef STRINGSIZE
+#define STRINGSIZE 1024
+#endif
+
extern char * FascistLook(PWDICT *pwp, char *instring);
extern int PWClose(PWDICT *pwp);
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php