aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/cipher.h2
-rw-r--r--include/i18n.h6
2 files changed, 2 insertions, 6 deletions
diff --git a/include/cipher.h b/include/cipher.h
index 52d1a7503..7262d5c66 100644
--- a/include/cipher.h
+++ b/include/cipher.h
@@ -88,7 +88,7 @@ extern ushort small_prime_numbers[];
/*-- primegen.c --*/
MPI generate_secret_prime( unsigned nbits );
MPI generate_public_prime( unsigned nbits );
-MPI generate_elg_prime( unsigned pbits, unsigned qbits, MPI g );
+MPI generate_elg_prime( unsigned pbits, unsigned qbits, MPI g, MPI **factors );
#endif /*G10_CIPHER_H*/
diff --git a/include/i18n.h b/include/i18n.h
index 55911b474..a75f3c40f 100644
--- a/include/i18n.h
+++ b/include/i18n.h
@@ -21,12 +21,8 @@
#ifndef G10_I18N_H
#define G10_I18N_H
-#ifdef ENABLE_NLS
-#ifdef HAVE_LIBINTL_H
+#ifdef HAVE_LIBINTL
#include <libintl.h>
-#else
- #include "../intl/libintl.h"
-#endif
#define _(a) gettext (a)
#ifdef gettext_noop
#define N_(a) gettext_noop (a)