From 67c9126d924cf7044b3997611396cbd37abd9f29 Mon Sep 17 00:00:00 2001 From: pk Date: Fri, 4 Jul 1997 21:48:39 +0000 Subject: [PATCH] NULL => 0 (from Arne Juul; addendum to PR#3237) --- sbin/restore/restore.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbin/restore/restore.c b/sbin/restore/restore.c index 344e92dceda8..586e65838f07 100644 --- a/sbin/restore/restore.c +++ b/sbin/restore/restore.c @@ -1,4 +1,4 @@ -/* $NetBSD: restore.c,v 1.9 1997/06/18 07:10:16 lukem Exp $ */ +/* $NetBSD: restore.c,v 1.10 1997/07/04 21:48:39 pk Exp $ */ /* * Copyright (c) 1983, 1993 @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)restore.c 8.3 (Berkeley) 9/13/94"; #else -static char rcsid[] = "$NetBSD: restore.c,v 1.9 1997/06/18 07:10:16 lukem Exp $"; +static char rcsid[] = "$NetBSD: restore.c,v 1.10 1997/07/04 21:48:39 pk Exp $"; #endif #endif /* not lint */ @@ -824,7 +824,7 @@ checkrestore() ep->e_flags &= ~KEEP; if (ep->e_type == NODE) ep->e_flags &= ~(NEW|EXISTED); - if (ep->e_flags != NULL) + if (ep->e_flags != 0) badentry(ep, "incomplete operations"); } }