Commit 1d34346c authored by mcgreer%netscape.com's avatar mcgreer%netscape.com
Browse files

fix up the comment

btw, the last checkin was r=wtc,relyea
parent c64ee802
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2114,7 +2114,7 @@ pk11_GetPrivKey(PK11Object *object,CK_KEY_TYPE key_type)
	if (!priv && pubKey.data[0] == 0) {
	    /* Because of legacy code issues, sometimes the public key has
	     * a '0' prepended to it, forcing it to be unsigned.  The database
	     * does not store that '0', so catch that failure here.
	     * may not store that '0', so remove it and try again.
	     */
	    SECItem tmpPubKey;
	    tmpPubKey.data = pubKey.data + 1;
+2 −2
Original line number Diff line number Diff line
@@ -752,8 +752,8 @@ pk11_DestroyObject(PK11Object *object)
		if (rv != SECSuccess && pubKey.data[0] == 0) {
		    /* Because of legacy code issues, sometimes the public key
		     * has a '0' prepended to it, forcing it to be unsigned.
	             * The database  does not store that '0', so catch that
		     * failure here.
	             * The database may not store that '0', so remove it and
		     * try again.
		     */
		    SECItem tmpPubKey;
		    tmpPubKey.data = pubKey.data + 1;