diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-07-11 23:31:15 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-07-12 10:25:06 +0800 |
commit | eb29179da623f9cf4abd663577395a085452ca18 (patch) | |
tree | a7eec4690f254d4cb9048ca87a5e7f401a2e74ae /smime | |
parent | beb8e74577f695d0d3c2efea52dc10c2136f0135 (diff) | |
download | gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.gz gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.tar.zst gsoc2013-evolution-eb29179da623f9cf4abd663577395a085452ca18.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'smime')
-rw-r--r-- | smime/lib/e-cert-db.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smime/lib/e-cert-db.c b/smime/lib/e-cert-db.c index e81d6d4d60..2e23df2c4a 100644 --- a/smime/lib/e-cert-db.c +++ b/smime/lib/e-cert-db.c @@ -511,7 +511,7 @@ install_loadable_roots (void) "/opt/mozilla/lib/mozilla" }; - for (i = 0; i < G_N_ELEMENTS (paths_to_check); i ++) { + for (i = 0; i < G_N_ELEMENTS (paths_to_check); i++) { gchar *dll_path = g_module_build_path (paths_to_check [i], "nssckbi"); if (g_file_test (dll_path, G_FILE_TEST_EXISTS)) { @@ -1109,7 +1109,7 @@ e_cert_db_import_email_cert (ECertDB *certdb, goto loser; } - for ( i = 0; i < numcerts; i++ ) { + for (i = 0; i < numcerts; i++) { rawCerts[i] = &certCollection->rawCerts[i]; } |