Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2002-01-23 19:50:17 +0300
committerCorinna Vinschen <corinna@vinschen.de>2002-01-23 19:50:17 +0300
commitadbd01afe4fb1e0154aaedde1a7de7f5f1a8f46b (patch)
tree802c5a70f3d60dddb9f66b83200f06c4c8472644 /winsup/cygwin/path.cc
parent9eda4ad4e30565df414f8f87a928bf39b9f20444 (diff)
* path.cc (symlink): Fix check for already existing file.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r--winsup/cygwin/path.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index cfdd3aeda..d237a5d8b 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -2575,7 +2575,7 @@ symlink (const char *topath, const char *frompath)
}
win32_path.check (frompath, PC_SYM_NOFOLLOW);
- if (allow_winsymlinks && !win32_path.error)
+ if (allow_winsymlinks && !win32_path.exists ())
{
strcpy (from, frompath);
strcat (from, ".lnk");