OSDN Git Service

* src/lhext.c (make_parent_path): On Cygwin, when `foo.exe'
authorarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 10 Nov 2002 20:21:44 +0000 (20:21 +0000)
committerarai <arai@6a8cc165-1e22-0410-a132-eb4e3f353aba>
Sun, 10 Nov 2002 20:21:44 +0000 (20:21 +0000)
exists, stat("foo", &buf) is successful and it is not a directory.

git-svn-id: svn+ssh://svn.sourceforge.jp/svnroot/lha/lha/trunk@575 6a8cc165-1e22-0410-a132-eb4e3f353aba

src/lhext.c

index 062cfa0..9c2e4e5 100644 (file)
@@ -97,8 +97,6 @@ make_parent_path(name)
        if (GETSTAT(path, &stbuf) >= 0) {
                if (is_directory(&stbuf))
                        return TRUE;
-               error("Not a directory \"%s\"", path);
-               return FALSE;
        }
 
        if (verbose)