diff options
author | 2006-02-08 12:15:27 +0000 | |
---|---|---|
committer | 2006-02-08 12:15:27 +0000 | |
commit | a0b0b69dc757711066434e4d0e1344e301e473e8 (patch) | |
tree | a80ab0c761cfd8ddf6a0a64717102045c688a520 /usr.bin/ssh/ssh-agent.c | |
parent | Use __LP64__ instead of __amd64__ for portability. (diff) | |
download | wireguard-openbsd-a0b0b69dc757711066434e4d0e1344e301e473e8.tar.xz wireguard-openbsd-a0b0b69dc757711066434e4d0e1344e301e473e8.zip |
move #include <paths.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index c779c78522d..9d864259274 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -34,10 +34,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-agent.c,v 1.125 2006/02/07 01:18:09 stevesk Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.126 2006/02/08 12:15:27 stevesk Exp $"); #include <sys/queue.h> +#include <paths.h> + #include <openssl/evp.h> #include <openssl/md5.h> |