From b0781f79db208900b2d0fd4a1ee69e121bf37792 Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Wed, 8 Nov 2006 10:01:36 +1100 Subject: - markus@cvs.openbsd.org 2006/11/07 13:02:07 [dh.c] BN_hex2bn returns int; from dtucker@ --- dh.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'dh.c') diff --git a/dh.c b/dh.c index e708ff78..78e230b9 100644 --- a/dh.c +++ b/dh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dh.c,v 1.43 2006/11/06 21:25:28 markus Exp $ */ +/* $OpenBSD: dh.c,v 1.44 2006/11/07 13:02:07 markus Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. * @@ -254,9 +254,9 @@ dh_new_group_asc(const char *gen, const char *modulus) if ((dh = DH_new()) == NULL) fatal("dh_new_group_asc: DH_new"); - if (BN_hex2bn(&dh->p, modulus) == NULL) + if (BN_hex2bn(&dh->p, modulus) == 0) fatal("BN_hex2bn p"); - if (BN_hex2bn(&dh->g, gen) == NULL) + if (BN_hex2bn(&dh->g, gen) == 0) fatal("BN_hex2bn g"); return (dh); -- cgit v1.2.3