summaryrefslogtreecommitdiffstats
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-08-06 23:57:31 +0200
committerBen Lindstrom <mouring@eviladmin.org>2001-08-06 23:57:31 +0200
commitffce1476383e513c252452d444d17af59c14ef2c (patch)
tree3db1f9722242be49dcd9c23ad706b31902d92f9e /ssh.c
parent - jakob@cvs.openbsd.org 2001/08/02 15:32:10 (diff)
downloadopenssh-ffce1476383e513c252452d444d17af59c14ef2c.tar.xz
openssh-ffce1476383e513c252452d444d17af59c14ef2c.zip
- jakob@cvs.openbsd.org 2001/08/02 15:43:57
[ssh-agent.c ssh.c ssh-keygen.c] add /* SMARTCARD */ to #else/#endif. ok markus@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ssh.c b/ssh.c
index 501a4a27b..ee3f0c6a0 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.135 2001/08/02 15:32:10 jakob Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.136 2001/08/02 15:43:57 jakob Exp $");
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -72,7 +72,7 @@ RCSID("$OpenBSD: ssh.c,v 1.135 2001/08/02 15:32:10 jakob Exp $");
#ifdef SMARTCARD
#include <openssl/engine.h>
#include "scard.h"
-#endif
+#endif /* SMARTCARD */
#ifdef HAVE___PROGNAME
extern char *__progname;
@@ -376,9 +376,9 @@ again:
case 'I':
#ifdef SMARTCARD
options.smartcard_device = xstrdup(optarg);
-#else
+#else /* SMARTCARD */
fprintf(stderr, "no support for smartcards.\n");
-#endif
+#endif /* SMARTCARD */
break;
case 't':
if (tty_flag)
@@ -1195,7 +1195,7 @@ load_public_identity_files(void)
key_free(public);
}
-#endif
+#endif /* SMARTCARD */
for (; i < options.num_identity_files; i++) {
filename = tilde_expand_filename(options.identity_files[i],
original_real_uid);