Fix segfaults in terminal resizing, introduced by re-engineering.
[u/mdw/putty] / winsftp.c
index a399f45..52c827a 100644 (file)
--- a/winsftp.c
+++ b/winsftp.c
@@ -289,7 +289,7 @@ DirHandle *open_directory(char *name)
     char *findfile;
     DirHandle *ret;
 
-    /* To enumerate files in dir `foo', we search for `foo/*'. */
+    /* Enumerate files in dir `foo'. */
     findfile = dupcat(name, "/*", NULL);
     h = FindFirstFile(findfile, &fdat);
     if (h == INVALID_HANDLE_VALUE)