diff options
author | 2001-08-02 15:43:57 +0000 | |
---|---|---|
committer | 2001-08-02 15:43:57 +0000 | |
commit | e8d234a0c69520817a70e97fe576f5e97769554d (patch) | |
tree | 913c6078db41ad2766f5aec80bee496c4bb2db1a /usr.bin/ssh/ssh-agent.c | |
parent | add smartcard to usage(). ok markus@ (diff) | |
download | wireguard-openbsd-e8d234a0c69520817a70e97fe576f5e97769554d.tar.xz wireguard-openbsd-e8d234a0c69520817a70e97fe576f5e97769554d.zip |
add /* SMARTCARD */ to #else/#endif. ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-agent.c')
-rw-r--r-- | usr.bin/ssh/ssh-agent.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.bin/ssh/ssh-agent.c b/usr.bin/ssh/ssh-agent.c index 30330670abb..8c9970c15e0 100644 --- a/usr.bin/ssh/ssh-agent.c +++ b/usr.bin/ssh/ssh-agent.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-agent.c,v 1.69 2001/08/01 22:03:33 markus Exp $ */ +/* $OpenBSD: ssh-agent.c,v 1.70 2001/08/02 15:43:57 jakob Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> @@ -36,7 +36,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-agent.c,v 1.69 2001/08/01 22:03:33 markus Exp $"); +RCSID("$OpenBSD: ssh-agent.c,v 1.70 2001/08/02 15:43:57 jakob Exp $"); #include <openssl/evp.h> #include <openssl/md5.h> @@ -59,7 +59,7 @@ RCSID("$OpenBSD: ssh-agent.c,v 1.69 2001/08/01 22:03:33 markus Exp $"); #ifdef SMARTCARD #include <openssl/engine.h> #include "scard.h" -#endif +#endif /* SMARTCARD */ typedef struct { int fd; @@ -545,7 +545,7 @@ process_remove_smartcard_key(SocketEntry *e) buffer_put_char(&e->output, success ? SSH_AGENT_SUCCESS : SSH_AGENT_FAILURE); } -#endif +#endif /* SMARTCARD */ /* dispatch incoming messages */ @@ -611,7 +611,7 @@ process_message(SocketEntry *e) case SSH_AGENTC_REMOVE_SMARTCARD_KEY: process_remove_smartcard_key(e); break; -#endif +#endif /* SMARTCARD */ default: /* Unknown message. Respond with failure. */ error("Unknown message %d", type); |