summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/sshd.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>2000-05-02 12:44:39 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>2000-05-02 12:44:39 +0000
commitac8595e7249c34fa9861d578c566c2f467f629c5 (patch)
treecade20ee59d2c53f3e846669cd77491eae100583 /usr.bin/ssh/sshd.c
parentccd8a0de28286c3f07c94a3fae47531a2941ca11 (diff)
use c-style comments
Diffstat (limited to 'usr.bin/ssh/sshd.c')
-rw-r--r--usr.bin/ssh/sshd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c
index e94f7074d1a..7f173a1e34e 100644
--- a/usr.bin/ssh/sshd.c
+++ b/usr.bin/ssh/sshd.c
@@ -14,7 +14,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sshd.c,v 1.113 2000/05/01 20:34:51 markus Exp $");
+RCSID("$OpenBSD: sshd.c,v 1.114 2000/05/02 12:44:38 markus Exp $");
#include "xmalloc.h"
#include "rsa.h"
@@ -1310,7 +1310,7 @@ do_ssh2_kex()
/* send server hostkey, DH pubkey 'f' and singed H */
packet_start(SSH2_MSG_KEXDH_REPLY);
packet_put_string((char *)server_host_key_blob, sbloblen);
- packet_put_bignum2(dh->pub_key); // f
+ packet_put_bignum2(dh->pub_key); /* f */
packet_put_string((char *)signature, slen);
packet_send();
xfree(signature);