iliaa           Tue Dec 24 12:30:48 2002 EDT

  Modified files:              
    /php4/ext/ncurses   ncurses_functions.c 
  Log:
  Changed strncpy() to strlcpy().
  
  
Index: php4/ext/ncurses/ncurses_functions.c
diff -u php4/ext/ncurses/ncurses_functions.c:1.33 
php4/ext/ncurses/ncurses_functions.c:1.34
--- php4/ext/ncurses/ncurses_functions.c:1.33   Tue Dec 24 12:20:33 2002
+++ php4/ext/ncurses/ncurses_functions.c        Tue Dec 24 12:30:48 2002
@@ -1768,7 +1768,7 @@
        
        IS_NCURSES_INITIALIZED();
 
-       strncpy(temp, termname(), sizeof(temp) - 1);
+       strlcpy(temp, termname(), sizeof(temp) - 1);
        temp[sizeof(temp) - 1] = '\0';
 
        RETURN_STRINGL (temp, strlen(temp), 1);
@@ -1783,7 +1783,7 @@
 
        IS_NCURSES_INITIALIZED();
 
-       strncpy(temp, longname(), sizeof(temp) - 1);
+       strlcpy(temp, longname(), sizeof(temp) - 1);
        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