diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:07:26 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:07:26 +0000 |
commit | 740e1f5357744919283fb440711e803850c19812 (patch) | |
tree | 375bf64c6449c74dd00b5940e5d3354566b23a89 /usr.bin/ssh/scp.c | |
parent | 89a7db6727edf8cd68c273e20f8d77bd39dba6ef (diff) |
move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/scp.c')
-rw-r--r-- | usr.bin/ssh/scp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c index 4810a55f131..f8c9cfe24a7 100644 --- a/usr.bin/ssh/scp.c +++ b/usr.bin/ssh/scp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: scp.c,v 1.146 2006/07/10 16:37:36 stevesk Exp $ */ +/* $OpenBSD: scp.c,v 1.147 2006/07/11 20:07:25 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 <errno.h> #include <fcntl.h> #include <pwd.h> #include <signal.h> |