]> andersk Git - openssh.git/blobdiff - ssh-agent.c
- jakob@cvs.openbsd.org 2001/08/02 15:43:57
[openssh.git] / ssh-agent.c
index 1df3ccd1138002cb708f81f434a39be5fb7af653..a396fe0350226537ee4b0d508a3e0d85e3e9227e 100644 (file)
@@ -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;
@@ -549,7 +549,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 */
 
@@ -615,7 +615,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);
This page took 0.035298 seconds and 4 git commands to generate.