summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/scp.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-07-06 16:03:54 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-07-06 16:03:54 +0000
commit3e5dda7b859c760637a02baab3070275c99c874c (patch)
treea28ad01bcb3bcb2aa13a26994539ab9f9f57c852 /usr.bin/ssh/scp.c
parent233c4b284aafd55220503b11f052d8e1e17b94dd (diff)
move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r--usr.bin/ssh/scp.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index 2345a98be18..e371bf55a05 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: scp.c,v 1.142 2006/05/17 12:43:34 markus Exp $ */
+/* $OpenBSD: scp.c,v 1.143 2006/07/06 16:03:53 stevesk Exp $ */
/*
* scp - secure remote copy. This is basically patched BSD rcp which
* uses ssh to do the data transfer (instead of using rcmd).
@@ -79,6 +79,7 @@
#include <ctype.h>
#include <dirent.h>
+#include <pwd.h>
#include <signal.h>
#include "xmalloc.h"