From 9804ebb02645e926a3ccac894f497aae86ffebcb Mon Sep 17 00:00:00 2001 From: Thomas Bluemel Date: Sun, 31 Jul 2005 21:51:04 +0000 Subject: [PATCH] fixed uninitialized variable warning svn path=/trunk/; revision=16927 --- reactos/apps/utils/net/ftp/ftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/apps/utils/net/ftp/ftp.c b/reactos/apps/utils/net/ftp/ftp.c index a7d2bc62c80..1fa0f0d7e5e 100644 --- a/reactos/apps/utils/net/ftp/ftp.c +++ b/reactos/apps/utils/net/ftp/ftp.c @@ -729,7 +729,7 @@ void recvrequest(char *cmd, char *local, char *remote, char *mode, int (*closefunc)(), _pclose(), fclose(); void (*oldintr)(int), (*oldintp)(int); void abortrecv(); - int oldverbose, oldtype = 0, is_retr, tcrflag, nfnd, bare_lfs = 0; + int oldverbose = 0, oldtype = 0, is_retr, tcrflag, nfnd, bare_lfs = 0; char *gunique(), msg; // static char *buf; // Szurgot: Shouldn't this go SOMEWHERE? char buf[1024];