Module Name: src
Committed By: joerg
Date: Thu Oct 13 16:58:30 UTC 2011
Modified Files:
src/external/bsd/cron/dist: database.c
Log Message:
Kill redundant ()
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/bsd/cron/dist/database.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/cron/dist/database.c
diff -u src/external/bsd/cron/dist/database.c:1.5 src/external/bsd/cron/dist/database.c:1.6
--- src/external/bsd/cron/dist/database.c:1.5 Wed Oct 12 19:48:24 2011
+++ src/external/bsd/cron/dist/database.c Thu Oct 13 16:58:30 2011
@@ -1,4 +1,4 @@
-/* $NetBSD: database.c,v 1.5 2011/10/12 19:48:24 christos Exp $ */
+/* $NetBSD: database.c,v 1.6 2011/10/13 16:58:30 joerg Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved
@@ -25,7 +25,7 @@
#if 0
static char rcsid[] = "Id: database.c,v 1.7 2004/01/23 18:56:42 vixie Exp";
#else
-__RCSID("$NetBSD: database.c,v 1.5 2011/10/12 19:48:24 christos Exp $");
+__RCSID("$NetBSD: database.c,v 1.6 2011/10/13 16:58:30 joerg Exp $");
#endif
#endif
@@ -88,7 +88,7 @@ process_dir(const char *dname, struct st
}
/* ... or ending with ~ ... */
- if ((dp->d_name[len - 1] == '~'))
+ if (dp->d_name[len - 1] == '~')
continue;
(void)strlcpy(fname, dp->d_name, sizeof(fname));