Mercurial > trustbridge
diff cinst/mozilla.c @ 905:698b6a9bd75e
Fix coding style for C code
astyle --style=gnu --indent=spaces=2
author | Andre Heinecke <andre.heinecke@intevation.de> |
---|---|
date | Wed, 13 Aug 2014 15:49:47 +0200 |
parents | 2303caf56dbb |
children | 18e3ad073b38 |
line wrap: on
line diff
--- a/cinst/mozilla.c Wed Aug 13 15:44:35 2014 +0200 +++ b/cinst/mozilla.c Wed Aug 13 15:49:47 2014 +0200 @@ -349,11 +349,12 @@ DEBUGPRINTF("Listing certs in \"%s\"\n", confdir); list = PK11_ListCerts(PK11CertListAll, NULL); for (node = CERT_LIST_HEAD(list); !CERT_LIST_END(node, list); - node = CERT_LIST_NEXT(node)) { - name = node->appData; + node = CERT_LIST_NEXT(node)) + { + name = node->appData; - DEBUGPRINTF("Found certificate \"%s\"\n", name); - } + DEBUGPRINTF("Found certificate \"%s\"\n", name); + } CERT_DestroyCertList(list); NSS_Shutdown(); } @@ -687,8 +688,8 @@ strv_free(dbdirs); } - fclose(input_stream); + fclose(input_stream); - exit: +exit: exit(exit_code); }