diff options
Diffstat (limited to 'smime/lib')
-rw-r--r-- | smime/lib/e-asn1-object.c | 5 | ||||
-rw-r--r-- | smime/lib/e-cert-db.c | 5 | ||||
-rw-r--r-- | smime/lib/e-cert-trust.c | 5 | ||||
-rw-r--r-- | smime/lib/e-cert.c | 5 | ||||
-rw-r--r-- | smime/lib/e-pkcs12.c | 8 |
5 files changed, 28 insertions, 0 deletions
diff --git a/smime/lib/e-asn1-object.c b/smime/lib/e-asn1-object.c index b7528dcd22..3fe957f3ba 100644 --- a/smime/lib/e-asn1-object.c +++ b/smime/lib/e-asn1-object.c @@ -55,6 +55,11 @@ * */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "e-asn1-object.h" #include "secasn1.h" diff --git a/smime/lib/e-cert-db.c b/smime/lib/e-cert-db.c index 64145239ea..be45f88883 100644 --- a/smime/lib/e-cert-db.c +++ b/smime/lib/e-cert-db.c @@ -55,6 +55,11 @@ * */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + /* XXX toshok why oh *why* god WHY did they do this? no fucking sense */ /* private NSS defines used by PSM */ diff --git a/smime/lib/e-cert-trust.c b/smime/lib/e-cert-trust.c index 7386a88963..d800bbcccc 100644 --- a/smime/lib/e-cert-trust.c +++ b/smime/lib/e-cert-trust.c @@ -59,6 +59,11 @@ * */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "e-cert-trust.h" void diff --git a/smime/lib/e-cert.c b/smime/lib/e-cert.c index 54f79690d6..e6fbd57e76 100644 --- a/smime/lib/e-cert.c +++ b/smime/lib/e-cert.c @@ -55,6 +55,11 @@ * */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <time.h> #include <libgnome/gnome-i18n.h> diff --git a/smime/lib/e-pkcs12.c b/smime/lib/e-pkcs12.c index 0a9bb3bc74..14eea35fe6 100644 --- a/smime/lib/e-pkcs12.c +++ b/smime/lib/e-pkcs12.c @@ -55,6 +55,11 @@ * */ + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <gtk/gtk.h> #include <libgnome/gnome-i18n.h> @@ -346,6 +351,7 @@ e_pkcs12_import_from_file (EPKCS12 *pkcs12, const char *path, GError **error) gboolean e_pkcs12_export_to_file (EPKCS12 *pkcs12, const char *path, GList *certs, GError **error) { + return FALSE; } /* what to do when the nickname collides with one already in the db. @@ -417,4 +423,6 @@ static gboolean handle_error(int myerr) { printf ("handle_error (%d)\n", myerr); + + return FALSE; } |