NetBSD Coverity CID 3797: bad return code check for open(2) fixed

(!fd replaced with fd < 0)
This commit is contained in:
kardel 2006-06-18 21:25:13 +00:00
parent b58f2a229e
commit e1a3a74084
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: refclock_acts.c,v 1.3 2006/06/11 19:34:12 kardel Exp $ */
/* $NetBSD: refclock_acts.c,v 1.4 2006/06/18 21:25:13 kardel Exp $ */
/*
* refclock_acts - clock driver for the NIST/USNO/PTB/NPL Computer Time
@ -756,7 +756,7 @@ acts_timeout(
sprintf(lockfile, LOCKFILE, up->unit);
fd = open(lockfile, O_WRONLY | O_CREAT | O_EXCL,
0644);
if (!fd) {
if (fd < 0) {
msyslog(LOG_ERR, "acts: port busy");
return;
}