diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-07-12 22:22:46 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-07-12 22:22:46 +1000 |
commit | 39972493467dd9a32a117e85bcbff9aa1e7f3c8d (patch) | |
tree | 652f02d97e6237c0b0a7b202e60517bdc7c14720 /scp.c | |
parent | e7d4b19f755c0d33122ef373e54b69e6b93cb0b4 (diff) |
- stevesk@cvs.openbsd.org 2006/07/11 20:07:25
[scp.c auth.c monitor.c serverloop.c sftp-server.c sshpty.c readpass.c
sshd.c monitor_wrap.c monitor_fdpass.c ssh-agent.c ttymodes.c atomicio.c
includes.h session.c sshlogin.c monitor_mm.c packet.c sshconnect2.c
sftp-client.c nchan.c clientloop.c sftp.c misc.c canohost.c channels.c
ssh-keygen.c progressmeter.c uidswap.c msg.c readconf.c sshconnect.c]
move #include <errno.h> out of includes.h; ok markus@
Diffstat (limited to 'scp.c')
-rw-r--r-- | scp.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: scp.c,v 1.146 2006/07/10 16:37:36 stevesk Exp $ */ | 1 | /* $OpenBSD: scp.c,v 1.147 2006/07/11 20:07:25 stevesk Exp $ */ |
2 | /* | 2 | /* |
3 | * scp - secure remote copy. This is basically patched BSD rcp which | 3 | * scp - secure remote copy. This is basically patched BSD rcp which |
4 | * uses ssh to do the data transfer (instead of using rcmd). | 4 | * uses ssh to do the data transfer (instead of using rcmd). |
@@ -81,6 +81,7 @@ | |||
81 | 81 | ||
82 | #include <ctype.h> | 82 | #include <ctype.h> |
83 | #include <dirent.h> | 83 | #include <dirent.h> |
84 | #include <errno.h> | ||
84 | #include <fcntl.h> | 85 | #include <fcntl.h> |
85 | #include <pwd.h> | 86 | #include <pwd.h> |
86 | #include <signal.h> | 87 | #include <signal.h> |