iliaa           Tue Dec 24 12:33:34 2002 EDT

  Modified files:              
    /php4/ext/ncurses   ncurses_functions.c 
  Log:
  The -1 is no longer needed, since it is done automatically by strlcpy().
  
  
Index: php4/ext/ncurses/ncurses_functions.c
diff -u php4/ext/ncurses/ncurses_functions.c:1.34 
php4/ext/ncurses/ncurses_functions.c:1.35
--- php4/ext/ncurses/ncurses_functions.c:1.34   Tue Dec 24 12:30:48 2002
+++ php4/ext/ncurses/ncurses_functions.c        Tue Dec 24 12:33:33 2002
@@ -1768,7 +1768,7 @@
        
        IS_NCURSES_INITIALIZED();
 
-       strlcpy(temp, termname(), sizeof(temp) - 1);
+       strlcpy(temp, termname(), sizeof(temp));
        temp[sizeof(temp) - 1] = '\0';
 
        RETURN_STRINGL (temp, strlen(temp), 1);
@@ -1783,7 +1783,7 @@
 
        IS_NCURSES_INITIALIZED();
 
-       strlcpy(temp, longname(), sizeof(temp) - 1);
+       strlcpy(temp, longname(), sizeof(temp));
        temp[sizeof(temp) - 1] = '\0';
 
        RETURN_STRINGL (temp, strlen(temp), 1);



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

Reply via email to