aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssh/dns.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssh/dns.c')
-rw-r--r--crypto/openssh/dns.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/crypto/openssh/dns.c b/crypto/openssh/dns.c
index e8693cee8313..0731254620c2 100644
--- a/crypto/openssh/dns.c
+++ b/crypto/openssh/dns.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dns.c,v 1.46 2025/08/29 03:50:38 djm Exp $ */
+/* $OpenBSD: dns.c,v 1.48 2026/03/03 09:57:25 dtucker Exp $ */
/*
* Copyright (c) 2003 Wesley Griffin. All rights reserved.
@@ -38,7 +38,6 @@
#include "xmalloc.h"
#include "sshkey.h"
-#include "ssherr.h"
#include "dns.h"
#include "log.h"
#include "digest.h"
@@ -78,7 +77,7 @@ dns_result_totext(unsigned int res)
* Caller must free digest which is allocated by sshkey_fingerprint_raw().
*/
static int
-dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
+dns_read_key(uint8_t *algorithm, uint8_t *digest_type,
u_char **digest, size_t *digest_len, struct sshkey *key)
{
int r, success = 0;
@@ -126,7 +125,7 @@ dns_read_key(u_int8_t *algorithm, u_int8_t *digest_type,
* Read SSHFP parameters from rdata buffer.
*/
static int
-dns_read_rdata(u_int8_t *algorithm, u_int8_t *digest_type,
+dns_read_rdata(uint8_t *algorithm, uint8_t *digest_type,
u_char **digest, size_t *digest_len, u_char *rdata, int rdata_len)
{
int success = 0;
@@ -194,12 +193,12 @@ verify_host_key_dns(const char *hostname, struct sockaddr *address,
int result;
struct rrsetinfo *fingerprints = NULL;
- u_int8_t hostkey_algorithm;
+ uint8_t hostkey_algorithm;
u_char *hostkey_digest;
size_t hostkey_digest_len;
- u_int8_t dnskey_algorithm;
- u_int8_t dnskey_digest_type;
+ uint8_t dnskey_algorithm;
+ uint8_t dnskey_digest_type;
u_char *dnskey_digest;
size_t dnskey_digest_len;
@@ -299,9 +298,9 @@ int
export_dns_rr(const char *hostname, struct sshkey *key, FILE *f, int generic,
int alg)
{
- u_int8_t rdata_pubkey_algorithm = 0;
- u_int8_t rdata_digest_type = SSHFP_HASH_RESERVED;
- u_int8_t dtype;
+ uint8_t rdata_pubkey_algorithm = 0;
+ uint8_t rdata_digest_type = SSHFP_HASH_RESERVED;
+ uint8_t dtype;
u_char *rdata_digest;
size_t i, rdata_digest_len;
int success = 0;