diff options
| author | christos <christos@NetBSD.org> | 2006-03-29 16:01:03 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-03-29 16:01:03 +0000 |
| commit | e4933cdc0d0337f86f590b884cbd9a03faff1d54 (patch) | |
| tree | 56a88dc16276a81283d9a124f9b9ca3da04b899d /gnu/libexec | |
| parent | cb5d0e69e70d102f5cf89f809df1472a46e8b036 (diff) | |
Coverity CID 2496: Uninitialized var.
Diffstat (limited to 'gnu/libexec')
| -rw-r--r-- | gnu/libexec/uucp/common_sources/chat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/libexec/uucp/common_sources/chat.c b/gnu/libexec/uucp/common_sources/chat.c index 014d67346ec..23d38cc5eb5 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 <ctype.h> @@ -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; |
