From 6f686358d9ef7d1a63e50ca013ff9d2afa0292d8 Mon Sep 17 00:00:00 2001 From: ddouthitt Date: Wed, 14 Nov 2001 21:44:42 +0000 Subject: [PATCH] Minor bug fixes to main.c --- server/main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/main.c b/server/main.c index ed990c4..49cfe79 100644 --- a/server/main.c +++ b/server/main.c @@ -128,6 +128,7 @@ int drop_privs(char *user); int init_drivers(); int init_screens(); void do_mainloop(); +void lcd_list_drivers(); #define ESSENTIAL(f) {int r; if( ( r=f )!=0 ) return r;} @@ -680,7 +681,7 @@ do_mainloop () if((message = malloc(256)) == NULL) syslog(LOG_NOTICE, "Error allocating message string"); else { - snprintf(message, 256, "Timeout matches check, has timeout->%d", s->name, s->timeout); + snprintf(message, 256, "Timeout matches check, screen %s has timeout->%d", s->name, s->timeout); syslog(LOG_NOTICE, message); free(message); }