From e4933cdc0d0337f86f590b884cbd9a03faff1d54 Mon Sep 17 00:00:00 2001 From: christos Date: Wed, 29 Mar 2006 16:01:03 +0000 Subject: [PATCH] Coverity CID 2496: Uninitialized var. --- gnu/libexec/uucp/common_sources/chat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnu/libexec/uucp/common_sources/chat.c b/gnu/libexec/uucp/common_sources/chat.c index 014d67346ecd..23d38cc5eb5c 100644 --- a/gnu/libexec/uucp/common_sources/chat.c +++ b/gnu/libexec/uucp/common_sources/chat.c @@ -26,7 +26,7 @@ #include "uucp.h" #if USE_RCS_ID -const char chat_rcsid[] = "$Id: chat.c,v 1.3 1995/08/24 05:18:45 jtc Exp $"; +const char chat_rcsid[] = "$Id: chat.c,v 1.4 2006/03/29 16:01:03 christos Exp $"; #endif #include @@ -558,7 +558,7 @@ fcsend (qconn, puuconf, z, qsys, qdial, zphone, ftranslate, fstrip) boolean (*pfwrite) P((struct sconnection *, const char *, size_t)); char *zcallout_login; char *zcallout_pass; - boolean fquote; + boolean fquote = 0; if (strcmp (z, "\"\"") == 0) return TRUE;