summaryrefslogtreecommitdiff
path: root/games/fortune
diff options
context:
space:
mode:
Diffstat (limited to 'games/fortune')
-rw-r--r--games/fortune/fortune/fortune.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c
index eb5a78f0e93..3cc8b450c01 100644
--- a/games/fortune/fortune/fortune.c
+++ b/games/fortune/fortune/fortune.c
@@ -1,4 +1,4 @@
-/* $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 $ */
/* $NetBSD: fortune.c,v 1.8 1995/03/23 08:28:40 cgd Exp $ */
/*-
@@ -163,8 +163,11 @@ main(int ac, char *av[])
init_prob();
if ((Short_only && minlen_in_list(File_list) > SLEN) ||
- (Long_only && maxlen_in_list(File_list) <= SLEN))
+ (Long_only && maxlen_in_list(File_list) <= SLEN)) {
+ fprintf(stderr,
+ "no fortunes matching length constraint found\n");
return 1;
+ }
do {
get_fort();