From c4aa99cfadf0d5de94be64b8e76d7fbbf415b4df Mon Sep 17 00:00:00 2001 From: Frank Cusack Date: Wed, 26 Feb 2003 10:18:10 +0000 Subject: [PATCH] style --- chat/chat.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/chat/chat.c b/chat/chat.c index a69d66a..14db281 100644 --- a/chat/chat.c +++ b/chat/chat.c @@ -87,7 +87,7 @@ #endif #ifndef lint -static const char rcsid[] = "$Id: chat.c,v 1.27 2002/01/11 18:05:44 etbe Exp $"; +static const char rcsid[] = "$Id: chat.c,v 1.28 2003/02/26 10:18:10 fcusack Exp $"; #endif #include @@ -1092,8 +1092,8 @@ register char *s; fatal(2, "Too many REPORT strings"); s1 = clean(s, 0); - - if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1) + if (strlen(s1) > strlen(s) + || strlen(s1) + 1 > sizeof(fail_buffer)) fatal(1, "Illegal or too-long REPORT string ('%v')", s); report_string[n_reports++] = s1; @@ -1113,7 +1113,8 @@ register char *s; s1 = clean(s, 0); - if (strlen(s1) > strlen(s) || strlen(s1) > sizeof fail_buffer - 1) + if (strlen(s1) > strlen(s) + || strlen(s1) + 1 > sizeof(fail_buffer)) fatal(1, "Illegal or too-long REPORT string ('%v')", s); old_max = n_reports; -- 2.39.2