diff options
author | Nick Clifton <nickc@redhat.com> | 2000-06-25 16:30:27 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2000-06-25 16:30:27 +0000 |
commit | 307ff1df129bd324640f7c6361c2f78423dc88e7 (patch) | |
tree | 15aa395ebde96f9eb73e76fce0374c09079df67b /binutils/bucomm.c | |
parent | cc542d3bd4fe777533664233a8bdccffa535d124 (diff) | |
download | gdb-307ff1df129bd324640f7c6361c2f78423dc88e7.zip gdb-307ff1df129bd324640f7c6361c2f78423dc88e7.tar.gz gdb-307ff1df129bd324640f7c6361c2f78423dc88e7.tar.bz2 |
Advance past both parts of dos based <letter>: filepath prefix.
Diffstat (limited to 'binutils/bucomm.c')
-rw-r--r-- | binutils/bucomm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/binutils/bucomm.c b/binutils/bucomm.c index 86c327f..a40a599 100644 --- a/binutils/bucomm.c +++ b/binutils/bucomm.c @@ -222,7 +222,7 @@ make_tempname (filename) if (slash == NULL || (bslash != NULL && bslash > slash)) slash = bslash; if (slash == NULL && filename[0] != '\0' && filename[1] == ':') - slash = filename + 1; + slash = filename + 2; } #endif |