aboutsummaryrefslogtreecommitdiffstats
path: root/smime/lib
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2004-02-12 03:14:50 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2004-02-12 03:14:50 +0800
commit957f1e9b8dbbc96161c00101bcf507fcfc43dbc3 (patch)
treea935feca80fecc59d1a32bd288c7e7c0f8f519ca /smime/lib
parent410ed6e9e7d46afa7c4ffd984f4c8ce7aa4975d5 (diff)
downloadgsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar.gz
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar.bz2
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar.lz
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar.xz
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.tar.zst
gsoc2013-evolution-957f1e9b8dbbc96161c00101bcf507fcfc43dbc3.zip
#include <config.h> (e_pkcs12_export_to_file): Hmm. I gather this needs to
2004-02-11 Jeffrey Stedfast <fejj@ximian.com> * lib/e-pkcs12.c: #include <config.h> (e_pkcs12_export_to_file): Hmm. I gather this needs to be implemented. return FALSE here until someone implements this so gcc doesn't complain about control reaching the end of a non-void function. (handle_error): Same. * lib/e-cert-trust.c: And here. * lib/e-cert-db.c: Same. * lib/e-asn1-object.c: And here. * lib/e-cert.c: Here too. * gui/e-cert-selector.c: Same. * gui/certificate-viewer.c: Same. * gui/certificate-manager.c: #include <config.h> svn path=/trunk/; revision=24712
Diffstat (limited to 'smime/lib')
-rw-r--r--smime/lib/e-asn1-object.c5
-rw-r--r--smime/lib/e-cert-db.c5
-rw-r--r--smime/lib/e-cert-trust.c5
-rw-r--r--smime/lib/e-cert.c5
-rw-r--r--smime/lib/e-pkcs12.c8
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;
}