diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 11:09:13 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2001-01-26 11:09:13 +0000 |
commit | b2312051495c6ede647657f37c45629b4dde67cf (patch) | |
tree | 22c88d5fcb9342de84e23e77db3d107df1115765 /sbin | |
parent | b4bc5b299ddcce8d0d8ed43f3494e9fa9b9ab23b (diff) |
Merge with EOM 1.54
author: ho
Only include <gmp.h> with MP_FLAVOUR_GMP. Sync with OpenBSD.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/isakmpd/x509.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sbin/isakmpd/x509.c b/sbin/isakmpd/x509.c index 9eb9ab1fa4c..e7ae5b1775b 100644 --- a/sbin/isakmpd/x509.c +++ b/sbin/isakmpd/x509.c @@ -1,5 +1,5 @@ -/* $OpenBSD: x509.c,v 1.35 2001/01/10 20:31:24 angelos Exp $ */ -/* $EOM: x509.c,v 1.51 2000/12/12 01:38:38 niklas Exp $ */ +/* $OpenBSD: x509.c,v 1.36 2001/01/26 11:09:12 niklas Exp $ */ +/* $EOM: x509.c,v 1.54 2001/01/16 18:42:16 ho Exp $ */ /* * Copyright (c) 1998, 1999 Niels Provos. All rights reserved. @@ -48,6 +48,10 @@ #include <string.h> #include <unistd.h> +#if MP_FLAVOUR == MP_FLAVOUR_GMP +#include <gmp.h> +#endif + #ifdef USE_POLICY #include <regex.h> #include <keynote.h> |