summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjulien.pierre.bugs%sun.com <devnull@localhost>2005-05-10 21:14:51 +0000
committerjulien.pierre.bugs%sun.com <devnull@localhost>2005-05-10 21:14:51 +0000
commite05c598cafb788ed5d5ff8157ce7c108ea2630d8 (patch)
treebe18f718c17b71660aba250c1c3171b089cfb1a8
parentd0012c10f9d1758f44f730fe775e563137a226f2 (diff)
downloadnss-hg-e05c598cafb788ed5d5ff8157ce7c108ea2630d8.tar.gz
Fix for 265369 - fix compiler warning in unix_rand . r=nelson
-rw-r--r--security/nss/lib/freebl/unix_rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/freebl/unix_rand.c b/security/nss/lib/freebl/unix_rand.c
index 22f8931b8..f61da8b29 100644
--- a/security/nss/lib/freebl/unix_rand.c
+++ b/security/nss/lib/freebl/unix_rand.c
@@ -833,7 +833,7 @@ for the small amount of entropy it provides.
* is running on.
*/
if (environ != NULL) {
- cp = environ;
+ cp = (const char * const *) environ;
while (*cp) {
RNG_RandomUpdate(*cp, strlen(*cp));
cp++;