summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshpty.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-22 20:48:22 +0000
committerstevesk <stevesk@openbsd.org>2006-07-22 20:48:22 +0000
commit0deb67942b30c1593c2410880c6206349479cd2f (patch)
tree9acb3eb91469c8753beea5543419000531af95bd /usr.bin/ssh/sshpty.c
parentmove #include <time.h> out of includes.h (diff)
downloadwireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.tar.xz
wireguard-openbsd-0deb67942b30c1593c2410880c6206349479cd2f.zip
move #include <string.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/sshpty.c')
-rw-r--r--usr.bin/ssh/sshpty.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/sshpty.c b/usr.bin/ssh/sshpty.c
index 87263d3b69b..871ba03aa33 100644
--- a/usr.bin/ssh/sshpty.c
+++ b/usr.bin/ssh/sshpty.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshpty.c,v 1.24 2006/07/17 01:31:10 stevesk Exp $ */
+/* $OpenBSD: sshpty.c,v 1.25 2006/07/22 20:48:23 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -23,6 +23,7 @@
#include <grp.h>
#include <paths.h>
#include <pwd.h>
+#include <string.h>
#include <termios.h>
#include <unistd.h>
#include <util.h>