Author: Gerhard Tonn <GerhardTonn@gammatau.de>
Description: use int instead of char
  char is per default unsigned on some archs thus rendering a comparison always
  true due to limited range of data type

Index: francine-0.99.8+orig/src/after_login.c
===================================================================
--- francine-0.99.8+orig.orig/src/after_login.c	2001-04-22 17:20:38.000000000 +0200
+++ francine-0.99.8+orig/src/after_login.c	2016-01-21 23:00:23.853966918 +0100
@@ -107,7 +107,7 @@
 print_motd (void)
 {
   FILE *motd;
-  char c;
+  int c;
 
   if ((motd = fopen ("/etc/motd", "r")) != NULL)  /* open the file */
     {
