From 957f1e9b8dbbc96161c00101bcf507fcfc43dbc3 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Wed, 11 Feb 2004 19:14:50 +0000 Subject: #include (e_pkcs12_export_to_file): Hmm. I gather this needs to 2004-02-11 Jeffrey Stedfast * lib/e-pkcs12.c: #include (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 svn path=/trunk/; revision=24712 --- smime/lib/e-pkcs12.c | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'smime/lib/e-pkcs12.c') 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 +#endif + #include #include @@ -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; } -- cgit v1.2.3