# HG changeset patch # User masneyb # Date 1099307249 0 # Node ID 0e4ca3c8b9cf29f4562a603ff9a26492dba78e4d # Parent 0a1d03fa2261f83288aa266d855347a3a624085a 2004-11-1 Brian Masney * lib/protocols.c (gftp_parse_ls_novell) - fixes for parsing directory listings that have a space in their username diff -r 0a1d03fa2261 -r 0e4ca3c8b9cf ChangeLog --- a/ChangeLog Mon Nov 01 11:00:21 2004 +0000 +++ b/ChangeLog Mon Nov 01 11:07:29 2004 +0000 @@ -1,4 +1,7 @@ 2004-11-1 Brian Masney + * lib/protocols.c (gftp_parse_ls_novell) - fixes for parsing directory + listings that have a space in their username + * lib/config_file.c (gftp_read_config_file) - fixes for creating the protocol dropdown when SSL support is disabled (from Aurelien Jarno ) @@ -2976,7 +2979,7 @@ * cvsclean - added this script - * *.[ch] - added $Id: ChangeLog,v 1.350 2004/11/01 11:00:21 masneyb Exp $ tags + * *.[ch] - added $Id: ChangeLog,v 1.351 2004/11/01 11:07:29 masneyb Exp $ tags * debian/* - updated files from Debian maintainer diff -r 0a1d03fa2261 -r 0e4ca3c8b9cf lib/protocols.c --- a/lib/protocols.c Mon Nov 01 11:00:21 2004 +0000 +++ b/lib/protocols.c Mon Nov 01 11:07:29 2004 +0000 @@ -1733,6 +1733,9 @@ fle->group = g_strdup (_("unknown")); + while (*startpos != '\0' && !isdigit (*startpos)) + startpos++; + fle->size = gftp_parse_file_size (startpos); startpos = goto_next_token (startpos);