Fix a sign/unsigned comparison.
This commit is contained in:
parent
d7cff4ab97
commit
8f5f415d44
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=114624
@ -38,6 +38,7 @@
|
|||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#if 0
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
static const char copyright[] =
|
static const char copyright[] =
|
||||||
"@(#) Copyright (c) 1983, 1988, 1989, 1993\n\
|
"@(#) Copyright (c) 1983, 1988, 1989, 1993\n\
|
||||||
@ -45,12 +46,11 @@ static const char copyright[] =
|
|||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
|
||||||
#ifndef lint
|
#ifndef lint
|
||||||
#if 0
|
|
||||||
static const char sccsid[] = "@(#)rlogind.c 8.1 (Berkeley) 6/4/93";
|
static const char sccsid[] = "@(#)rlogind.c 8.1 (Berkeley) 6/4/93";
|
||||||
#endif
|
|
||||||
static const char rcsid[] =
|
|
||||||
"$FreeBSD$";
|
|
||||||
#endif /* not lint */
|
#endif /* not lint */
|
||||||
|
#endif
|
||||||
|
#include <sys/cdefs.h>
|
||||||
|
__FBSDID("$FreeBSD$");
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* remote login server:
|
* remote login server:
|
||||||
@ -343,7 +343,7 @@ control(int pty, char *cp, int n)
|
|||||||
{
|
{
|
||||||
struct winsize w;
|
struct winsize w;
|
||||||
|
|
||||||
if (n < 4+sizeof (w) || cp[2] != 's' || cp[3] != 's')
|
if (n < 4 + (int)sizeof(w) || cp[2] != 's' || cp[3] != 's')
|
||||||
return (0);
|
return (0);
|
||||||
oobdata[0] &= ~TIOCPKT_WINDOW; /* we know he heard */
|
oobdata[0] &= ~TIOCPKT_WINDOW; /* we know he heard */
|
||||||
bcopy(cp+4, (char *)&w, sizeof(w));
|
bcopy(cp+4, (char *)&w, sizeof(w));
|
||||||
|
Loading…
Reference in New Issue
Block a user