diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-06 20:15:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-06 20:15:39 +0000 |
commit | 89a8fda5c250e1bd4af3c903ea59254c515fc537 (patch) | |
tree | f433d31ed590e4e10bafa7385ebc4a1ab61f13e6 /usr.bin/ssh/scp | |
parent | cbd4eb763a28ef99d702989aeb0d801be74c89a6 (diff) |
move atomicio into it's own file. wrap all socket write()s which were doing
write(sock, buf, len) != len, with atomicio() calls.
Diffstat (limited to 'usr.bin/ssh/scp')
-rw-r--r-- | usr.bin/ssh/scp/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/scp/Makefile b/usr.bin/ssh/scp/Makefile index 3f59a9fd153..a34681a129a 100644 --- a/usr.bin/ssh/scp/Makefile +++ b/usr.bin/ssh/scp/Makefile @@ -13,6 +13,6 @@ BINMODE?=555 BINDIR= /usr/bin MAN= scp.1 -SRCS= scp.c +SRCS= scp.c atomicio.c .include <bsd.prog.mk> |