From 4e205ed637fa853d115099170e6e11407ca49619 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Sun, 23 Dec 2007 00:39:17 +0000 Subject: Nullch and others were still alive and well in some of the operating system specific directories. I think I've chainsawed all of them now, but I can't guarantee that it compiles anywhere from win32. p4raw-id: //depot/perl@32713 --- NetWare/nw5.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'NetWare/nw5.c') diff --git a/NetWare/nw5.c b/NetWare/nw5.c index aac80317d4..552106af4d 100644 --- a/NetWare/nw5.c +++ b/NetWare/nw5.c @@ -318,7 +318,7 @@ nw_crypt(const char *txt, const char *salt) return des_fcrypt(txt, salt, w32_crypt_buffer); #else Perl_croak(aTHX_ "The crypt() function is not implemented on NetWare\n"); - return Nullch; + return NULL; #endif } @@ -1001,7 +1001,7 @@ do_spawn2(char *cmd, int exectype) if (*s) *s++ = '\0'; } - *a = Nullch; + *a = NULL; if (argv[0]) { switch (exectype) { case EXECF_SPAWN: @@ -1031,7 +1031,7 @@ do_spawn2(char *cmd, int exectype) while (++i < nw_perlshell_items) argv[i] = nw_perlshell_vec[i]; argv[i++] = cmd; - argv[i] = Nullch; + argv[i] = NULL; switch (exectype) { case EXECF_SPAWN: status = nw_spawnvp(P_WAIT, argv[0], (char **)argv); -- cgit v1.2.1