From 1a21f33188bf4530967c644e0e540b6b7db09c1d Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 2 Jun 2004 21:20:54 +0000 Subject: * spawn.cc (find_exec): Use has_slash to determine if path has a slash rather than calculating this twice. --- winsup/cygwin/path.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'winsup/cygwin/path.cc') diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index b09450476..105092e58 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -2197,14 +2197,14 @@ mount_info::add_item (const char *native, const char *posix, unsigned mountflags posixerr = normalize_posix_path (posix, posixtmp, &posixtail); debug_printf ("%s[%s], %s[%s], %p", - native, nativeerr?error:nativetmp, - posix, posixerr?error:posixtmp, mountflags); + native, nativeerr ? error : nativetmp, + posix, posixerr ? error : posixtmp, mountflags); - if (nativeerr || posixerr) + if (nativeerr || posixerr) { set_errno (nativeerr?:posixerr); - return -1; - } + return -1; + } /* Make sure both paths do not end in /. */ if (nativetail > nativetmp + 1 && nativetail[-1] == '\\') -- cgit v1.2.3