summaryrefslogtreecommitdiff
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 bc913a2a5..8620e4951 100644
--- a/sshd.c
+++ b/sshd.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: sshd.c,v 1.46 1999/12/28 04:09:36 damien Exp $"); 14RCSID("$Id: sshd.c,v 1.47 1999/12/28 23:17:09 damien Exp $");
15 15
16#ifdef HAVE_POLL_H 16#ifdef HAVE_POLL_H
17# include <poll.h> 17# include <poll.h>
@@ -510,6 +510,9 @@ main(int ac, char **av)
510 case '?': 510 case '?':
511 default: 511 default:
512 fprintf(stderr, "sshd version %s\n", SSH_VERSION); 512 fprintf(stderr, "sshd version %s\n", SSH_VERSION);
513#ifdef RSAREF
514 fprintf(stderr, "Compiled with RSAref.\n");
515#endif
513 fprintf(stderr, "Usage: %s [options]\n", av0); 516 fprintf(stderr, "Usage: %s [options]\n", av0);
514 fprintf(stderr, "Options:\n"); 517 fprintf(stderr, "Options:\n");
515 fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE); 518 fprintf(stderr, " -f file Configuration file (default %s)\n", SERVER_CONFIG_FILE);