X-Git-Url: http://sjero.net/git/?p=wget;a=blobdiff_plain;f=src%2Fftp-basic.c;h=3a714078aaeb7d51b32925aa56953de73518e510;hp=851f506884b9a0817770151af7898e7c595b1434;hb=bd7f4ef701ce5db64659db496d3f47aeedfadac2;hpb=336c0de30166c540bd744c6faacf10a3c5373cfb diff --git a/src/ftp-basic.c b/src/ftp-basic.c index 851f5068..3a714078 100644 --- a/src/ftp-basic.c +++ b/src/ftp-basic.c @@ -1,5 +1,5 @@ /* Basic FTP routines. - Copyright (C) 1996-2006 Free Software Foundation, Inc. + Copyright (C) 1996-2007 Free Software Foundation, Inc. This file is part of GNU Wget. @@ -1038,7 +1038,9 @@ ftp_syst (int csock, enum stype *server_type) first word of the server response)? */ request = strtok (NULL, " "); - if (!strcasecmp (request, "VMS")) + if (request == NULL) + *server_type = ST_OTHER; + else if (!strcasecmp (request, "VMS")) *server_type = ST_VMS; else if (!strcasecmp (request, "UNIX")) *server_type = ST_UNIX;