From: Wayne Davison Date: Sat, 17 Sep 2005 21:49:24 +0000 (+0000) Subject: Changed one strcpy() into a strlcpy(). X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/8ad5cea371a004d9b52194d073208d2f269462c0?ds=sidebyside Changed one strcpy() into a strlcpy(). --- diff --git a/flist.c b/flist.c index 1a259bcd..1f11193f 100644 --- 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;