Added to library function to check endianess
[gapil.git] / sources / FortuneParse.c
index 24dabd1a51c2cbd0e873a8612b264cbb30d475e9..da1f68d61346d0ffa3f368d2e91bbce0c34ec44f 100644 (file)
@@ -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.5 2003/05/02 09:55:13 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;