Changed one strcpy() into a strlcpy().
authorWayne Davison <wayned@samba.org>
Sat, 17 Sep 2005 21:49:24 +0000 (21:49 +0000)
committerWayne Davison <wayned@samba.org>
Sat, 17 Sep 2005 21:49:24 +0000 (21:49 +0000)
flist.c

diff --git a/flist.c b/flist.c
index 1a259bcd83b68853d658380014448640f3c1684b..1f11193f35a52bf947b55ec77242f8488a489993 100644 (file)
--- a/flist.c
+++ b/flist.c
@@ -1176,7 +1176,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[])
                        static char *lastdir;
                        static int lastdir_len;
 
-                       strcpy(olddir, curr_dir); /* can't overflow */
+                       strlcpy(olddir, curr_dir, sizeof olddir);
 
                        if (!push_dir(dir)) {
                                io_error |= IOERR_GENERAL;