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:
authorChristopher Faylor <me@cgf.cx>2004-12-24 00:37:44 +0300
committerChristopher Faylor <me@cgf.cx>2004-12-24 00:37:44 +0300
commit861ef99725f983ce5bf2a4fc505dc4545bcecb17 (patch)
tree983e2255e75403d14f83f14bceb7879b3898e651 /winsup/cygwin/path.h
parent7a2ba9dbec847e68908d6c7eb8a93895d5ce9cff (diff)
* path.h (path_conv::set_normalized_path): Add second argument and fill it in
throughout. * path.cc (path_conv::check): Declare, set and use "strip_tail". (path_conv::set_normalized_path): Add and use second argument, replacing all tail stripping tests.
Diffstat (limited to 'winsup/cygwin/path.h')
-rw-r--r--winsup/cygwin/path.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h
index c10cb9b58..743246f9e 100644
--- a/winsup/cygwin/path.h
+++ b/winsup/cygwin/path.h
@@ -214,7 +214,7 @@ class path_conv
unsigned __stdcall ndisk_links (DWORD);
char *normalized_path;
size_t normalized_path_size;
- void set_normalized_path (const char *) __attribute__ ((regparm (2)));
+ void set_normalized_path (const char *, bool) __attribute__ ((regparm (3)));
DWORD get_symlink_length () { return symlink_length; };
private:
DWORD symlink_length;