diff options
author | 1999-12-06 20:15:25 +0000 | |
---|---|---|
committer | 1999-12-06 20:15:25 +0000 | |
commit | b84216c7e43a571d4035d416ad49dc5b0ece3d3e (patch) | |
tree | b5406030cc4979108efea77feefe93306882908a /usr.bin/ssh/ssh-add | |
parent | Regen. (diff) | |
download | wireguard-openbsd-b84216c7e43a571d4035d416ad49dc5b0ece3d3e.tar.xz wireguard-openbsd-b84216c7e43a571d4035d416ad49dc5b0ece3d3e.zip |
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> |