summaryrefslogtreecommitdiffstats
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>1999-12-29 10:17:09 +1100
committerDamien Miller <djm@mindrot.org>1999-12-29 10:17:09 +1100
commitd00d1611e4233b540d0f6f354e37fdd758a44d8f (patch)
tree92670d224ca7e5a3fd6cf2b975add1ac052285de /sshd.c
parente79334a2b06d4c897c4b764e5e94af72320e3ea9 (diff)
- Print whether OpenSSH was compiled with RSARef, patch from
Nalin Dahyabhai <nalin@thermo.stat.ncsu.edu>
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index bc913a2a..8620e495 100644
--- a/sshd.c
+++ b/sshd.c
@@ -11,7 +11,7 @@
*/
#include "includes.h"
-RCSID("$Id: sshd.c,v 1.46 1999/12/28 04:09:36 damien Exp $");
+RCSID("$Id: sshd.c,v 1.47 1999/12/28 23:17:09 damien Exp $");
#ifdef HAVE_POLL_H
# include <poll.h>
@@ -510,6 +510,9 @@ main(int ac, char **av)
case '?':
default:
fprintf(stderr, "sshd version %s\n", SSH_VERSION);
+#ifdef RSAREF
+ fprintf(stderr, "Compiled with RSAref.\n");
+#endif
fprintf(stderr, "Usage: %s [options]\n", av0);
fprintf(stderr, "Options:\n");
fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE);