diff options
author | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-09 03:42:01 +0200 |
---|---|---|
committer | Ben Lindstrom <mouring@eviladmin.org> | 2001-06-09 03:42:01 +0200 |
commit | 664408d2a794806722aa3f321b92c7bdd667c42e (patch) | |
tree | 0dbce8250bc4d6325ed2f2b6950221a24d62dc2a /sshconnect1.c | |
parent | - markus@cvs.openbsd.org 2001/06/07 19:57:53 (diff) | |
download | openssh-664408d2a794806722aa3f321b92c7bdd667c42e.tar.xz openssh-664408d2a794806722aa3f321b92c7bdd667c42e.zip |
- markus@cvs.openbsd.org 2001/06/07 20:23:05
[authfd.c authfile.c channels.c kexdh.c kexgex.c packet.c ssh.c
sshconnect.c sshconnect1.c]
use xxx_put_cstring()
Diffstat (limited to 'sshconnect1.c')
-rw-r--r-- | sshconnect1.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sshconnect1.c b/sshconnect1.c index c0fe86293..c20613571 100644 --- a/sshconnect1.c +++ b/sshconnect1.c @@ -13,7 +13,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshconnect1.c,v 1.32 2001/05/18 14:13:29 markus Exp $"); +RCSID("$OpenBSD: sshconnect1.c,v 1.33 2001/06/07 20:23:05 markus Exp $"); #include <openssl/bn.h> #include <openssl/evp.h> @@ -332,7 +332,7 @@ try_rhosts_rsa_authentication(const char *local_user, Key * host_key) /* Tell the server that we are willing to authenticate using this key. */ packet_start(SSH_CMSG_AUTH_RHOSTS_RSA); - packet_put_string(local_user, strlen(local_user)); + packet_put_cstring(local_user); packet_put_int(BN_num_bits(host_key->rsa->n)); packet_put_bignum(host_key->rsa->e); packet_put_bignum(host_key->rsa->n); @@ -527,7 +527,7 @@ send_kerberos_tgt(void) xfree(creds); packet_start(SSH_CMSG_HAVE_KERBEROS_TGT); - packet_put_string(buffer, strlen(buffer)); + packet_put_cstring(buffer); packet_send(); packet_write_wait(); @@ -594,7 +594,7 @@ send_afs_tokens(void) if (creds_to_radix(&creds, (u_char *) buffer, sizeof buffer) <= 0) break; packet_start(SSH_CMSG_HAVE_AFS_TOKEN); - packet_put_string(buffer, strlen(buffer)); + packet_put_cstring(buffer); packet_send(); packet_write_wait(); @@ -922,7 +922,7 @@ ssh_userauth1(const char *local_user, const char *server_user, char *host, /* Send the name of the user to log in as on the server. */ packet_start(SSH_CMSG_USER); - packet_put_string(server_user, strlen(server_user)); + packet_put_cstring(server_user); packet_send(); packet_write_wait(); @@ -980,7 +980,7 @@ ssh_userauth1(const char *local_user, const char *server_user, char *host, options.rhosts_authentication) { debug("Trying rhosts authentication."); packet_start(SSH_CMSG_AUTH_RHOSTS); - packet_put_string(local_user, strlen(local_user)); + packet_put_cstring(local_user); packet_send(); packet_write_wait(); |