fixed uninitialized variable warning
Modified: trunk/reactos/apps/utils/net/ftp/ftp.c
--- trunk/reactos/apps/utils/net/ftp/ftp.c 2005-08-01 13:01:58 UTC (rev 16952) +++ trunk/reactos/apps/utils/net/ftp/ftp.c 2005-08-01 13:27:02 UTC (rev 16953) @@ -724,7 +724,7 @@
void recvrequest(char *cmd, char *local, char *remote, char *mode, int printnames) {
- FILE *fout;
+ FILE *fout = stdout;
int din = 0; int (*closefunc)(), _pclose(), fclose(); void (*oldintr)(int), (*oldintp)(int);