diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-06 21:47:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-12-06 21:47:13 +0000 |
commit | 62c1e7702b231d2ab9a532c19f44b05bff0e3a56 (patch) | |
tree | e7e2ee0613b7c149fd1cd342858e80a05820f29e | |
parent | 5d5731d7736b9bbba10a3a98f3b7bc307e83473f (diff) |
atomicio() via lib
-rw-r--r-- | usr.bin/ssh/lib/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ssh/scp/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ssh/ssh-add/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ssh/ssh/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/ssh/sshd/Makefile | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/ssh/lib/Makefile b/usr.bin/ssh/lib/Makefile index 0212ae79343..8f7e4f75afa 100644 --- a/usr.bin/ssh/lib/Makefile +++ b/usr.bin/ssh/lib/Makefile @@ -4,7 +4,7 @@ LIB= ssh SRCS= authfd.c authfile.c bufaux.c buffer.c canohost.c channels.c \ cipher.c compat.c compress.c crc32.c deattack.c fingerprint.c \ hostfile.c log.c match.c mpaux.c nchan.c packet.c readpass.c \ - rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c + rsa.c tildexpand.c ttymodes.c uidswap.c xmalloc.c atomicio.c NOPROFILE= yes NOPIC= yes diff --git a/usr.bin/ssh/scp/Makefile b/usr.bin/ssh/scp/Makefile index a34681a129a..3f59a9fd153 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 atomicio.c +SRCS= scp.c .include <bsd.prog.mk> diff --git a/usr.bin/ssh/ssh-add/Makefile b/usr.bin/ssh/ssh-add/Makefile index 2647867fafd..5451e7d31b9 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 atomicio.c +SRCS= ssh-add.c log-client.c .include <bsd.prog.mk> diff --git a/usr.bin/ssh/ssh/Makefile b/usr.bin/ssh/ssh/Makefile index 989e92eaa7d..61a38add711 100644 --- a/usr.bin/ssh/ssh/Makefile +++ b/usr.bin/ssh/ssh/Makefile @@ -15,7 +15,7 @@ MAN= ssh.1 LINKS= ${BINDIR}/ssh ${BINDIR}/slogin MLINKS= ssh.1 slogin.1 -SRCS= ssh.c sshconnect.c log-client.c readconf.c clientloop.c atomicio.c +SRCS= ssh.c sshconnect.c log-client.c readconf.c clientloop.c .include <bsd.own.mk> # for AFS diff --git a/usr.bin/ssh/sshd/Makefile b/usr.bin/ssh/sshd/Makefile index aa4580b84a3..15d6eec2554 100644 --- a/usr.bin/ssh/sshd/Makefile +++ b/usr.bin/ssh/sshd/Makefile @@ -7,7 +7,7 @@ BINDIR= /usr/sbin MAN= sshd.8 SRCS= sshd.c auth-rhosts.c auth-passwd.c auth-rsa.c auth-rh-rsa.c \ - pty.c log-server.c login.c servconf.c serverloop.c atomicio.c + pty.c log-server.c login.c servconf.c serverloop.c .include <bsd.own.mk> # for KERBEROS and AFS |