diff options
author | Christopher Faylor <me@cgf.cx> | 2004-12-23 21:37:44 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-12-23 21:37:44 +0000 |
commit | 861ef99725f983ce5bf2a4fc505dc4545bcecb17 (patch) | |
tree | 983e2255e75403d14f83f14bceb7879b3898e651 /winsup/cygwin/path.h | |
parent | 7a2ba9dbec847e68908d6c7eb8a93895d5ce9cff (diff) | |
download | newlib-861ef99725f983ce5bf2a4fc505dc4545bcecb17.zip newlib-861ef99725f983ce5bf2a4fc505dc4545bcecb17.tar.gz newlib-861ef99725f983ce5bf2a4fc505dc4545bcecb17.tar.bz2 |
* 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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index c10cb9b..743246f 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; |