# HG changeset patch # User Sascha Wilde # Date 1396439226 -7200 # Node ID 6c4b3ff4a356abdcb68871bb3fdb52b0aeb7f287 # Parent cb5f082e90c520d9dbc0482712e9d673a56f8484 Fixed white space. diff -r cb5f082e90c5 -r 6c4b3ff4a356 cinst/mozilla.c --- a/cinst/mozilla.c Wed Apr 02 13:46:19 2014 +0200 +++ b/cinst/mozilla.c Wed Apr 02 13:47:06 2014 +0200 @@ -497,7 +497,7 @@ { SECItem *cert; bool success = true; - + while ((cert = seciteml_pop(certs)) != NULL) { for (int i=0; pdirs[i] != NULL; i++) @@ -508,7 +508,7 @@ free(cert->data); free(cert); } - + return success; } @@ -595,14 +595,14 @@ if (! apply_to_certs_and_profiles(remove_cert, &certs_to_remove, pdirs)) return_code |= WARN_MOZ_COULD_NOT_REMOVE_CERT; - + if (! apply_to_certs_and_profiles(import_cert, &certs_to_add, pdirs)) return_code |= WARN_MOZ_COULD_NOT_ADD_CERT; - + puts("NEW List of installed certs:"); for (int i=0; pdirs[i] != NULL; i++) nss_list_certs(pdirs[i]); - + strv_free(pdirs); } exit(return_code);