summaryrefslogtreecommitdiffstats
path: root/crypto/openssh/authfile.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2002-06-29 11:48:59 +0000
committerdes <des@FreeBSD.org>2002-06-29 11:48:59 +0000
commit72a8e501f778fe56e3ec3c32d99f77e20b9b24be (patch)
tree038040484c6082020b918a9c208a38e77fd09e7d /crypto/openssh/authfile.c
parent96f831106bfe6170a73a8112d39a8b123156c6f2 (diff)
downloadFreeBSD-src-72a8e501f778fe56e3ec3c32d99f77e20b9b24be.zip
FreeBSD-src-72a8e501f778fe56e3ec3c32d99f77e20b9b24be.tar.gz
Resolve conflicts.
Sponsored by: DARPA, NAI Labs
Diffstat (limited to 'crypto/openssh/authfile.c')
-rw-r--r--crypto/openssh/authfile.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/crypto/openssh/authfile.c b/crypto/openssh/authfile.c
index 6d936de..800ee65 100644
--- a/crypto/openssh/authfile.c
+++ b/crypto/openssh/authfile.c
@@ -36,7 +36,8 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: authfile.c,v 1.49 2002/05/23 19:24:30 markus Exp $");
+RCSID("$OpenBSD: authfile.c,v 1.50 2002/06/24 14:55:38 markus Exp $");
+RCSID("$FreeBSD$");
#include <openssl/err.h>
#include <openssl/evp.h>
@@ -270,7 +271,7 @@ key_load_public_rsa1(int fd, const char *filename, char **commentp)
(void) buffer_get_int(&buffer); /* reserved */
/* Read the public key from the buffer. */
- buffer_get_int(&buffer);
+ (void) buffer_get_int(&buffer);
pub = key_new(KEY_RSA1);
buffer_get_bignum(&buffer, pub->rsa->n);
buffer_get_bignum(&buffer, pub->rsa->e);
@@ -357,7 +358,7 @@ key_load_private_rsa1(int fd, const char *filename, const char *passphrase,
(void) buffer_get_int(&buffer); /* Reserved data. */
/* Read the public key from the buffer. */
- buffer_get_int(&buffer);
+ (void) buffer_get_int(&buffer);
prv = key_new_private(KEY_RSA1);
buffer_get_bignum(&buffer, prv->rsa->n);
OpenPOWER on IntegriCloud