# | Line 226 | Line 226 | main(int argc, char *argv[]) | |
---|---|---|
226 | /* initialize object types */ | |
227 | initotypes(); | |
228 | /* initialize urand */ | |
229 | < | srandom(rand_samp ? (long)time(0) : 0L); |
230 | < | initurand(2048); |
229 | > | if (rand_samp) { |
230 | > | srandom((long)time(0)); |
231 | > | initurand(0); |
232 | > | } else { |
233 | > | srandom(0L); |
234 | > | initurand(2048); |
235 | > | } |
236 | /* set up signal handling */ | |
237 | sigdie(SIGINT, "Interrupt"); | |
238 | #ifdef SIGHUP |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |