summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2006-11-28 17:36:02 +0100
committerWerner Koch <wk@gnupg.org>2006-11-28 17:36:02 +0100
commit252b668814dc419be37223b3fc75a661ff656f60 (patch)
treefe51bf585a57cc3325f3e488eea5992344926ed3 /common
parent * openfile.c (ask_outfile_name): Fixed buffer overflow occurring (diff)
downloadgnupg2-252b668814dc419be37223b3fc75a661ff656f60.tar.xz
gnupg2-252b668814dc419be37223b3fc75a661ff656f60.zip
Preparing 2.0.1
Diffstat (limited to 'common')
-rw-r--r--common/ChangeLog4
-rw-r--r--common/http.c1
-rw-r--r--common/util.h3
3 files changed, 7 insertions, 1 deletions
diff --git a/common/ChangeLog b/common/ChangeLog
index 63d856636..141838a9c 100644
--- a/common/ChangeLog
+++ b/common/ChangeLog
@@ -1,3 +1,7 @@
+2006-11-23 Werner Koch <wk@g10code.com>
+
+ * http.c: Include i18n.h
+
2006-11-21 Werner Koch <wk@g10code.com>
* estream.c: Remove explicit Pth soft mapping diabling becuase it
diff --git a/common/http.c b/common/http.c
index 3720b00af..6a015d1b3 100644
--- a/common/http.c
+++ b/common/http.c
@@ -70,6 +70,7 @@ typedef gnutls_transport_ptr gnutls_transport_ptr_t;
#endif
#include "util.h"
+#include "i18n.h"
#include "http.h"
#ifdef USE_DNS_SRV
#include "srv.h"
diff --git a/common/util.h b/common/util.h
index 11ff50503..f93283045 100644
--- a/common/util.h
+++ b/common/util.h
@@ -34,7 +34,7 @@
/* Hash function used with libksba. */
#define HASH_FNC ((void (*)(void *, const void*,size_t))gcry_md_write)
-/* get all the stuff from jnlib */
+/* Get all the stuff from jnlib. */
#include "../jnlib/logging.h"
#include "../jnlib/argparse.h"
#include "../jnlib/stringhelp.h"
@@ -43,6 +43,7 @@
#include "../jnlib/dotlock.h"
#include "../jnlib/utf8conv.h"
+
#if __GNUC__ >= 4
# define GNUPG_GCC_A_SENTINEL(a) __attribute__ ((sentinel(a)))
#else