Sync OpenBSD patchset 713:

This ioctl(TIOCGWINSZ) call is no longer necessary, the result is never
used and the server now does it later on the tty fd directly.
pull/1/head
Tiago Cunha 2010-06-06 00:25:47 +00:00
parent f62d3d22bb
commit be3643fba0
1 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $Id: client.c,v 1.92 2010-05-14 14:35:26 tcunha Exp $ */
/* $Id: client.c,v 1.93 2010-06-06 00:25:47 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -17,7 +17,6 @@
*/
#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/un.h>
@ -119,12 +118,9 @@ void
client_send_identify(int flags)
{
struct msg_identify_data data;
struct winsize ws;
char *term;
int fd;
if (ioctl(STDIN_FILENO, TIOCGWINSZ, &ws) == -1)
fatal("ioctl(TIOCGWINSZ)");
data.flags = flags;
if (getcwd(data.cwd, sizeof data.cwd) == NULL)