aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorMarcel Moolenaar <marcel@FreeBSD.org>2013-12-07 02:20:22 +0000
committerMarcel Moolenaar <marcel@FreeBSD.org>2013-12-07 02:20:22 +0000
commit3dc31d3a9c2ae2ae290f9f4f045ed3aa8cd0982b (patch)
tree2b6922874027cb0a004dfdc45add19142d9b5f4b /games
parent3a3dd1fd20089d6da1e02ee877468ed22810b89b (diff)
downloadsrc-3dc31d3a9c2ae2ae290f9f4f045ed3aa8cd0982b.tar.gz
src-3dc31d3a9c2ae2ae290f9f4f045ed3aa8cd0982b.zip
Remove "Warning: file \"%s\" unreadable". It was introduced with revision
44599 and turned less than useful ever since fortunes-o.dat got removed. Running "fortunes -a" is enough to always see it for fortunes-o.dat. Since we compile with debugging enabled, the removal is easily compensated for by running "fortune -D -D".
Notes
Notes: svn path=/head/; revision=259057
Diffstat (limited to 'games')
-rw-r--r--games/fortune/fortune/fortune.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/games/fortune/fortune/fortune.c b/games/fortune/fortune/fortune.c
index 4b2ffa750bc6..2fb2be0e249e 100644
--- a/games/fortune/fortune/fortune.c
+++ b/games/fortune/fortune/fortune.c
@@ -806,10 +806,6 @@ is_fortfile(const char *file, char **datp, char **posp, int check_for_offend)
strcat(datfile, ".dat");
if (access(datfile, R_OK) < 0) {
DPRINTF(2, (stderr, "FALSE (no readable \".dat\" file)\n"));
-#ifdef DEBUG
- if (Debug < 2)
- DPRINTF(0, (stderr, "Warning: file \"%s\" unreadable\n", datfile));
-#endif
free(datfile);
return (FALSE);
}