summaryrefslogtreecommitdiff
path: root/lib/util/asn1.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/util/asn1.c')
-rw-r--r--lib/util/asn1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/util/asn1.c b/lib/util/asn1.c
index 946f71359c..9e3d3eeb93 100644
--- a/lib/util/asn1.c
+++ b/lib/util/asn1.c
@@ -216,7 +216,7 @@ bool asn1_write_BitString(struct asn1_data *data, const void *p, size_t length,
bool ber_write_OID_String(TALLOC_CTX *mem_ctx, DATA_BLOB *blob, const char *OID)
{
- uint_t v, v2;
+ unsigned int v, v2;
const char *p = (const char *)OID;
char *newp;
int i;
@@ -588,7 +588,7 @@ static bool _ber_read_OID_String_impl(TALLOC_CTX *mem_ctx, DATA_BLOB blob,
{
int i;
uint8_t *b;
- uint_t v;
+ unsigned int v;
char *tmp_oid = NULL;
if (blob.length < 2) return false;