diff options
-rw-r--r-- | usr.bin/mg/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mg/fileio.c b/usr.bin/mg/fileio.c index d051c0ffc46..a06b30f274f 100644 --- a/usr.bin/mg/fileio.c +++ b/usr.bin/mg/fileio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fileio.c,v 1.74 2006/06/01 05:34:52 jason Exp $ */ +/* $OpenBSD: fileio.c,v 1.75 2006/06/01 05:56:51 kjell Exp $ */ /* This file is in the public domain. */ @@ -248,7 +248,7 @@ adjustname(const char *fn, int slashslash) path[0] = '\0'; - if (slashslash) { + if (slashslash == TRUE) { cp = fn + strlen(fn) - 1; for (; cp >= fn; cp--) { if (ep && (*cp == '/')) { |