X-Git-Url: https://gapil.gnulinux.it/gitweb/?p=gapil.git;a=blobdiff_plain;f=sources%2FFortuneParse.c;h=c81c7e828a2e192f4a9fe12efb3db0076e784f3f;hp=24dabd1a51c2cbd0e873a8612b264cbb30d475e9;hb=72b2686a82a62331891ca894a6c3b476365363fc;hpb=59b107d5207f19e0049bbd1032e10cba660da92e;ds=sidebyside diff --git a/sources/FortuneParse.c b/sources/FortuneParse.c index 24dabd1..c81c7e8 100644 --- a/sources/FortuneParse.c +++ b/sources/FortuneParse.c @@ -28,7 +28,7 @@ * Read n fortunes from fortune file file, and put it into the * string array fortune * - * $Id: FortuneParse.c,v 1.2 2002/08/18 14:38:04 piccardi Exp $ + * $Id: FortuneParse.c,v 1.3 2003/01/12 16:10:07 piccardi Exp $ * ****************************************************************/ /* @@ -59,7 +59,8 @@ int FortuneParse(char *file, char **fortune, int n) */ fortunefile = fopen(file,"r"); if (fortunefile == NULL) { /* on open error exit */ - perror("Opening fortune file"); + printf("On file %s\n", file); + perror("Cannot open file"); exit(-1); } i = 0;