diff options
author | Damien Miller <djm@mindrot.org> | 2015-01-27 13:06:23 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-27 13:06:23 +0100 |
commit | ade31d7b6f608a19b85bee29a7a00b1e636a2919 (patch) | |
tree | 1a150d0fe9460f4983782adba1eecdc27b1bc124 /ssh-keysign.c | |
parent | upstream commit (diff) | |
download | openssh-ade31d7b6f608a19b85bee29a7a00b1e636a2919.tar.xz openssh-ade31d7b6f608a19b85bee29a7a00b1e636a2919.zip |
these need active_state defined to link on OSX
temporary measure until active_state goes away entirely
Diffstat (limited to 'ssh-keysign.c')
-rw-r--r-- | ssh-keysign.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ssh-keysign.c b/ssh-keysign.c index 8af13fa89..222327ef1 100644 --- a/ssh-keysign.c +++ b/ssh-keysign.c @@ -57,6 +57,8 @@ #include "sshkey.h" #include "ssherr.h" +struct ssh *active_state = NULL; /* XXX needed for linking */ + /* XXX readconf.c needs these */ uid_t original_real_uid; |