comparison 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
comparison
equal deleted inserted replaced
904:f89b41fa7048 905:698b6a9bd75e
347 == SECSuccess) 347 == SECSuccess)
348 { 348 {
349 DEBUGPRINTF("Listing certs in \"%s\"\n", confdir); 349 DEBUGPRINTF("Listing certs in \"%s\"\n", confdir);
350 list = PK11_ListCerts(PK11CertListAll, NULL); 350 list = PK11_ListCerts(PK11CertListAll, NULL);
351 for (node = CERT_LIST_HEAD(list); !CERT_LIST_END(node, list); 351 for (node = CERT_LIST_HEAD(list); !CERT_LIST_END(node, list);
352 node = CERT_LIST_NEXT(node)) { 352 node = CERT_LIST_NEXT(node))
353 name = node->appData; 353 {
354 354 name = node->appData;
355 DEBUGPRINTF("Found certificate \"%s\"\n", name); 355
356 } 356 DEBUGPRINTF("Found certificate \"%s\"\n", name);
357 }
357 CERT_DestroyCertList(list); 358 CERT_DestroyCertList(list);
358 NSS_Shutdown(); 359 NSS_Shutdown();
359 } 360 }
360 else 361 else
361 { 362 {
685 #endif 686 #endif
686 687
687 strv_free(dbdirs); 688 strv_free(dbdirs);
688 } 689 }
689 690
690 fclose(input_stream); 691 fclose(input_stream);
691 692
692 exit: 693 exit:
693 exit(exit_code); 694 exit(exit_code);
694 } 695 }

http://wald.intevation.org/projects/trustbridge/