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/ssh-add | |
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/ssh-add')
-rw-r--r-- | usr.bin/ssh/ssh-add/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-add/Makefile b/usr.bin/ssh/ssh-add/Makefile index 5451e7d31b9..2647867fafd 100644 --- a/usr.bin/ssh/ssh-add/Makefile +++ b/usr.bin/ssh/ssh-add/Makefile @@ -13,7 +13,7 @@ BINMODE?=555 BINDIR= /usr/bin MAN= ssh-add.1 -SRCS= ssh-add.c log-client.c +SRCS= ssh-add.c log-client.c atomicio.c .include <bsd.prog.mk> |