Index: /trunk/psLib/src/dataManip/psRandom.c
===================================================================
--- /trunk/psLib/src/dataManip/psRandom.c	(revision 4082)
+++ /trunk/psLib/src/dataManip/psRandom.c	(revision 4083)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-02-17 19:26:23 $
+*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-01 23:51:25 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -69,5 +69,8 @@
         if(seed == 0) {
             gsl_rng_set(myRNG->gsl,p_psRandomGetSystemSeed());
+        } else {
+            gsl_rng_set(myRNG->gsl,seed);
         }
+        myRNG->type = type;
         break;
 
@@ -78,4 +81,5 @@
         break;
     }
+
     return(myRNG);
 }
Index: /trunk/psLib/src/math/psRandom.c
===================================================================
--- /trunk/psLib/src/math/psRandom.c	(revision 4082)
+++ /trunk/psLib/src/math/psRandom.c	(revision 4083)
@@ -10,6 +10,6 @@
 *  @author GLG, MHPCC
 *
-*  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-02-17 19:26:23 $
+*  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-06-01 23:51:25 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -69,5 +69,8 @@
         if(seed == 0) {
             gsl_rng_set(myRNG->gsl,p_psRandomGetSystemSeed());
+        } else {
+            gsl_rng_set(myRNG->gsl,seed);
         }
+        myRNG->type = type;
         break;
 
@@ -78,4 +81,5 @@
         break;
     }
+
     return(myRNG);
 }
