pajoye          Mon Jul 28 16:32:49 2008 UTC

  Modified files:              
    /php-src/ext/standard       crypt_freesec.c 
  Log:
  - vc6 is picky about brackets when used with a defined type...
  
http://cvs.php.net/viewvc.cgi/php-src/ext/standard/crypt_freesec.c?r1=1.1&r2=1.2&diff_format=u
Index: php-src/ext/standard/crypt_freesec.c
diff -u php-src/ext/standard/crypt_freesec.c:1.1 
php-src/ext/standard/crypt_freesec.c:1.2
--- php-src/ext/standard/crypt_freesec.c:1.1    Mon Jul 28 11:34:53 2008
+++ php-src/ext/standard/crypt_freesec.c        Mon Jul 28 16:32:48 2008
@@ -1,5 +1,5 @@
 /*
-  $Id: crypt_freesec.c,v 1.1 2008/07/28 11:34:53 pajoye Exp $ 
+  $Id: crypt_freesec.c,v 1.2 2008/07/28 16:32:48 pajoye Exp $ 
 */
 /*
  * This version is derived from the original implementation of FreeSec
@@ -40,7 +40,7 @@
  * SUCH DAMAGE.
  *
  *     $Owl: Owl/packages/glibc/crypt_freesec.c,v 1.4 2005/11/16 13:08:32 
solar Exp $
- *     $Id: crypt_freesec.c,v 1.1 2008/07/28 11:34:53 pajoye Exp $
+ *     $Id: crypt_freesec.c,v 1.2 2008/07/28 16:32:48 pajoye Exp $
  *
  * This is an original implementation of the DES and the crypt(3) interfaces
  * by David Burren <davidb at werj.com.au>.
@@ -172,7 +172,7 @@
 
 static u_char  bits8[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 };
 
-static u_char  ascii64[] =
+static unsigned char   ascii64[] =
         "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
 /*       0000000000111111111122222222223333333333444444444455555555556666 */
 /*       0123456789012345678901234567890123456789012345678901234567890123 */



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to