rpms/crypto-utils/devel keyutil.c,1.14,1.15

Elio Maldonado emaldonado at fedoraproject.org
Sun Mar 15 18:22:32 UTC 2009


Author: emaldonado

Update of /cvs/extras/rpms/crypto-utils/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv15540

Modified Files:
	keyutil.c 
Log Message:
Surround usage of the GEN_BREAK macro with open and close braces


Index: keyutil.c
===================================================================
RCS file: /cvs/extras/rpms/crypto-utils/devel/keyutil.c,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- keyutil.c	20 Feb 2009 23:00:35 -0000	1.14
+++ keyutil.c	15 Mar 2009 18:22:02 -0000	1.15
@@ -1243,7 +1243,9 @@
              * key which we will decrypt.
              */
             rv = PK11_GenerateRandom(randomPassword, RAND_PASS_LEN);
-            if (rv != SECSuccess) GEN_BREAK(rv);
+            if (rv != SECSuccess) {
+                GEN_BREAK(rv);
+            }
             pwitem.data = randomPassword;
             pwitem.len = RAND_PASS_LEN;
             pwitem.type = siBuffer;




More information about the fedora-extras-commits mailing list