projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9022101
)
(dir_name): Support for DOS-style file names with drive letters.
author
Jim Meyering
<jim@meyering.net>
Sat, 22 Jan 2000 21:29:02 +0000
(21:29 +0000)
committer
Jim Meyering
<jim@meyering.net>
Sat, 22 Jan 2000 21:29:02 +0000
(21:29 +0000)
lib/dirname.c
patch
|
blob
|
history
diff --git
a/lib/dirname.c
b/lib/dirname.c
index 483c33867258303cf196dd2f789e9bc09b0a5ca1..cf62de7a042f4a19cbe2c720720e8a76d7f53869 100644
(file)
--- a/
lib/dirname.c
+++ b/
lib/dirname.c
@@
-57,8
+57,17
@@
dir_name (const char *path)
else
{
/* Remove any trailing slashes from the result. */
+#ifdef MSDOS
+ char *lim = (path[0] >= 'A' && path[0] <= 'z' && path[1] == ':')
+ ? path + 2 : path;
+
+ /* If canonicalized "d:/path", leave alone the root case "d:/". */
+ while (slash > lim && *slash == '/')
+ --slash;
+#else
while (slash > path && *slash == '/')
--slash;
+#endif
length = slash - path + 1;
}