diff options
Diffstat (limited to 'NetWare/nw5.c')
-rw-r--r-- | NetWare/nw5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/nw5.c b/NetWare/nw5.c index 66ca348c1e..b217e1cf5f 100644 --- a/NetWare/nw5.c +++ b/NetWare/nw5.c @@ -581,8 +581,8 @@ nw_open(const char *path, int flag, ...) pmode = va_arg(ap, int); va_end(ap); - if (stricmp(path, "/dev/null")==0) - path = "NUL"; + if (stricmp(path, "/dev/nul")==0) + path = "NWNUL"; return open(path, flag, pmode); } |