[SCM] GNU Inetutils branch, master, updated. inetutils-1_9_4-98-g22243e6

[email protected] (Tim Ruehsen) Sat, 29 Feb 2020 13:30:25 -0500 (EST)
Newsgroups gmane.comp.gnu.inetutils.cvs
Message-ID <[email protected]>
--===============1804414744935948447==
Content-Type: text/plain

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  22243e6f8e3f2a95709f1a9e9e0a1660dd4cf745 (commit)
      from  83079af172bddc3f43aae38c309eba372d88d537 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=22243e6f8e3f2a95709f1a9e9e0a1660dd4cf745


commit 22243e6f8e3f2a95709f1a9e9e0a1660dd4cf745
Author: Tim Rühsen <[email protected]>
Date:   Sat Feb 29 19:30:20 2020 +0100

    telnet: Fix -Wsign-compare in suboption

diff --git a/telnet/telnet.c b/telnet/telnet.c
index d5d13c1..7746f7d 100644
--- a/telnet/telnet.c
+++ b/telnet/telnet.c
@@ -860,7 +860,7 @@ suboption (void)
 	  name = gettermname ();
 	  len = strlen (name) + 4 + 2;
 
-	  if ((len < NETROOM ()) && (len <= sizeof (temp)))
+	  if ((len < NETROOM ()) && (len <= (int) sizeof (temp)))
 	    {
 	      snprintf ((char *) temp, sizeof (temp), "%c%c%c%c%s%c%c",
 			IAC, SB, TELOPT_TTYPE, TELQUAL_IS,

-----------------------------------------------------------------------

Summary of changes:
 telnet/telnet.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
GNU Inetutils 


--===============1804414744935948447==
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: base64
Content-Disposition: inline

X19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX18KQ29tbWl0LWlu
ZXR1dGlscyBtYWlsaW5nIGxpc3QKQ29tbWl0LWluZXR1dGlsc0BnbnUub3JnCmh0dHBzOi8vbGlz
dHMuZ251Lm9yZy9tYWlsbWFuL2xpc3RpbmZvL2NvbW1pdC1pbmV0dXRpbHMK

--===============1804414744935948447==--