]> andersk Git - openssh.git/blobdiff - dh.c
- markus@cvs.openbsd.org 2006/11/07 13:02:07
[openssh.git] / dh.c
diff --git a/dh.c b/dh.c
index e708ff78b670656357bde1a504cf295fb2beeb29..78e230b9f2417c4233748c8e5fb6606167284843 100644 (file)
--- 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);
This page took 0.062205 seconds and 4 git commands to generate.