Subject: CVS commit: [netbsd-3] src/usr.bin/calendar
To: None <source-changes@NetBSD.org>
From: Matthias Scheler <tron@netbsd.org>
List: source-changes
Date: 04/07/2006 13:03:39
Module Name:	src
Committed By:	tron
Date:		Fri Apr  7 13:03:39 UTC 2006

Modified Files:
	src/usr.bin/calendar [netbsd-3]: calendar.c

Log Message:
Pull up following revision(s) (requested by jld in ticket #1246):
	usr.bin/calendar/calendar.c: revision 1.39
Correct logic error in wildcard handling, which was causing the
day-of-month on normal entries to always be treated as a wildcard.
Specifically, "if (x&(y|z))" is equivalent to "if ((x&y)||(x&z))", not
"if ((x&y)&&(x&z))", which latter is clearly what was intended.


To generate a diff of this commit:
cvs rdiff -r1.36.2.1 -r1.36.2.2 src/usr.bin/calendar/calendar.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.