We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5793e77 commit 1d26f69Copy full SHA for 1d26f69
games/fortune/fortune/fortune.c
@@ -1,4 +1,4 @@
1
-/* $OpenBSD: fortune.c,v 1.66 2024/10/20 21:07:58 tb Exp $ */
+/* $OpenBSD: fortune.c,v 1.67 2024/10/21 06:39:03 tb Exp $ */
2
/* $NetBSD: fortune.c,v 1.8 1995/03/23 08:28:40 cgd Exp $ */
3
4
/*-
@@ -163,8 +163,11 @@ main(int ac, char *av[])
163
164
init_prob();
165
if ((Short_only && minlen_in_list(File_list) > SLEN) ||
166
- (Long_only && maxlen_in_list(File_list) <= SLEN))
+ (Long_only && maxlen_in_list(File_list) <= SLEN)) {
167
+ fprintf(stderr,
168
+ "no fortunes matching length constraint found\n");
169
return 1;
170
+ }
171
172
do {
173
get_fort();
0 commit comments