Skip to content

Commit 1d26f69

Browse files
committed
Emit a warning if all fortunes in the file are too short or too long
From Nir Lichtman
1 parent 5793e77 commit 1d26f69

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

games/fortune/fortune/fortune.c

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $OpenBSD: fortune.c,v 1.66 2024/10/20 21:07:58 tb Exp $ */
1+
/* $OpenBSD: fortune.c,v 1.67 2024/10/21 06:39:03 tb Exp $ */
22
/* $NetBSD: fortune.c,v 1.8 1995/03/23 08:28:40 cgd Exp $ */
33

44
/*-
@@ -163,8 +163,11 @@ main(int ac, char *av[])
163163

164164
init_prob();
165165
if ((Short_only && minlen_in_list(File_list) > SLEN) ||
166-
(Long_only && maxlen_in_list(File_list) <= SLEN))
166+
(Long_only && maxlen_in_list(File_list) <= SLEN)) {
167+
fprintf(stderr,
168+
"no fortunes matching length constraint found\n");
167169
return 1;
170+
}
168171

169172
do {
170173
get_fort();

0 commit comments

Comments
 (0)