diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-05 13:42:29 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-04-05 13:42:29 +0000 |
commit | 728c2768590668c35dbcf237cec2e10d42c4cf41 (patch) | |
tree | e262c0e1a5f013f878531f4b43fcfde66df57c23 /NetWare/nw5.c | |
parent | 776b00a7bc9dd00537866358a47be2e07a70a235 (diff) | |
download | perl-728c2768590668c35dbcf237cec2e10d42c4cf41.tar.gz |
NetWare update from C Aditya.
p4raw-id: //depot/perl@15747
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); } |