Index: mozilla/security/nss/lib/freebl/drbg.c |
=================================================================== |
--- mozilla/security/nss/lib/freebl/drbg.c (revision 180567) |
+++ mozilla/security/nss/lib/freebl/drbg.c (working copy) |
@@ -1,7 +1,7 @@ |
/* This Source Code Form is subject to the terms of the Mozilla Public |
* License, v. 2.0. If a copy of the MPL was not distributed with this |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
-/* $Id: drbg.c,v 1.11 2012/06/28 17:55:05 rrelyea%redhat.com Exp $ */ |
+/* $Id: drbg.c,v 1.12 2012/12/12 19:22:39 wtc%google.com Exp $ */ |
#ifdef FREEBL_NO_DEPEND |
#include "stubs.h" |
@@ -470,7 +470,7 @@ |
/* Allow only one call to initialize the context */ |
PR_CallOnce(&coRNGInit, rng_init); |
/* Make sure there is a context */ |
- return (globalrng != NULL) ? PR_SUCCESS : PR_FAILURE; |
+ return (globalrng != NULL) ? SECSuccess : SECFailure; |
} |
/* |