Fix '/*' in comment.
authorjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 13 Oct 2004 12:10:30 +0000 (12:10 +0000)
committerjacob <jacob@cda61777-01e9-0310-a592-d414129be87e>
Wed, 13 Oct 2004 12:10:30 +0000 (12:10 +0000)
git-svn-id: svn://svn.tartarus.org/sgt/putty@4611 cda61777-01e9-0310-a592-d414129be87e

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)