helly           Tue Mar  6 01:13:22 2007 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/mbstring/oniguruma     regversion.c 
  Log:
  - More to go
  # CVS sucks, you cannot mix -D with -r
  # However, thanks edin for reminding me that we have mini version tags
  # I still prefer subverison. There we don't have any problem of this kind
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/oniguruma/regversion.c?r1=1.1.6.3&r2=1.1.6.4&diff_format=u
Index: php-src/ext/mbstring/oniguruma/regversion.c
diff -u php-src/ext/mbstring/oniguruma/regversion.c:1.1.6.3 
php-src/ext/mbstring/oniguruma/regversion.c:1.1.6.4
--- php-src/ext/mbstring/oniguruma/regversion.c:1.1.6.3 Sat Feb 24 02:17:24 2007
+++ php-src/ext/mbstring/oniguruma/regversion.c Tue Mar  6 01:13:21 2007
@@ -35,7 +35,7 @@
 {
   static char s[12];
 
-  snprintf(s, sizeof(s), "%d.%d.%d",
+  sprintf(s, sizeof(s), "%d.%d.%d",
           ONIGURUMA_VERSION_MAJOR,
           ONIGURUMA_VERSION_MINOR,
           ONIGURUMA_VERSION_TEENY);
@@ -47,7 +47,7 @@
 {
   static char s[58];
 
-  snprintf(s, sizeof(s), "Oniguruma %d.%d.%d : Copyright (C) 2002-2007 
K.Kosako",
+  sprintf(s, sizeof(s), "Oniguruma %d.%d.%d : Copyright (C) 2002-2007 
K.Kosako",
           ONIGURUMA_VERSION_MAJOR,
           ONIGURUMA_VERSION_MINOR,
           ONIGURUMA_VERSION_TEENY);

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

Reply via email to