From: Frank Cusack Date: Wed, 26 Feb 2003 10:18:10 +0000 (+0000) Subject: style X-Git-Tag: ppp-2.4.7~323 X-Git-Url: http://git.ozlabs.org/?a=commitdiff_plain;h=c4aa99cfadf0d5de94be64b8e76d7fbbf415b4df;p=ppp.git style --- 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;