From: Jan Dubois <jand@activestate.com>
Date: Sun, 12 Oct 2003 22:09:39 +0000 (-0700)
Subject: Internals::hash_seed() returns wrong value
X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=81eaca17788a9221a27310f8de41fa6679a5a1ee;p=p5sagit%2Fp5-mst-13.2.git

Internals::hash_seed() returns wrong value
Message-ID: <07ckovck8mp5e8tthmtbbcrpi2tj6q9eak@4ax.com>

p4raw-id: //depot/perl@21441
---

diff --git a/universal.c b/universal.c
index 22841bb..3a646ea 100644
--- a/universal.c
+++ b/universal.c
@@ -913,6 +913,6 @@ XS(XS_Internals_hash_seed)
     /* Using dXSARGS would also have dITEM and dSP,
      * which define 2 unused local variables.  */
     dMARK; dAX;
-    XSRETURN_UV(PL_hash_seed);
+    XSRETURN_UV(PERL_HASH_SEED);
 }