1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-04-09 23:28:06 -05:00

Fix '/*' in comment.

[originally from svn r4611]
This commit is contained in:
Jacob Nevins 2004-10-13 12:10:30 +00:00
parent 709a94e5f2
commit e3e59cb340

View File

@ -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)