Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 16 Dec 2011 15:44:12 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r228582 - head/libexec/getty
Message-ID:  <201112161544.pBGFiCXR014075@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Fri Dec 16 15:44:12 2011
New Revision: 228582
URL: http://svn.freebsd.org/changeset/base/228582

Log:
  In libexec/getty/chat.c, replace && with & in chat_send().  The intent
  is to test if the CHATDEBUG_SEND bit is set in the chat_debug global.
  
  MFC after:	1 week

Modified:
  head/libexec/getty/chat.c

Modified: head/libexec/getty/chat.c
==============================================================================
--- head/libexec/getty/chat.c	Fri Dec 16 15:38:11 2011	(r228581)
+++ head/libexec/getty/chat.c	Fri Dec 16 15:44:12 2011	(r228582)
@@ -388,7 +388,7 @@ chat_send(char const *str)
 {
 	int r = 0;
 
-	if (chat_debug && CHATDEBUG_SEND)
+	if (chat_debug & CHATDEBUG_SEND)
 		syslog(LOG_DEBUG, "chat_send '%s'", cleanstr(str, strlen(str)));
 
 	if (*str) {



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201112161544.pBGFiCXR014075>