rpms/crypto-utils/F-10 keyutil.c,1.16,1.17

Elio Maldonado emaldonado at fedoraproject.org
Fri Feb 27 02:05:14 UTC 2009


Author: emaldonado

Update of /cvs/extras/rpms/crypto-utils/F-10
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv23985

Modified Files:
	keyutil.c 
Log Message:
Fixed missuse of GEN_BREAK macro


Index: keyutil.c
===================================================================
RCS file: /cvs/extras/rpms/crypto-utils/F-10/keyutil.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- keyutil.c	20 Feb 2009 22:58:17 -0000	1.16
+++ keyutil.c	27 Feb 2009 02:04:44 -0000	1.17
@@ -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