Re: [Semibug] Help with Random Password Generator

2024-04-12 Thread Jonathan Drews
On Thu, Apr 11, 2024 at 05:54:43PM -0400, Nick Holland wrote: > > There's NOTHING random about time... sigh. > (granted, IIRC, srand and rand have a small input and output range, so ... it > isn't as bad as my initial reflexive puking would suggest) > > > to make it less deterministic ? Thanks

Re: [Semibug] Help with Random Password Generator

2024-04-11 Thread Nick Holland
On 4/11/24 00:28, Jonathan Drews wrote: I get the following warning when I link the program RandomPasswdGen $ cc -Wall -c randpass.c $ cc randpass.o -o RandomPasswdGen randpass.c(randpass.o:(main)): warning: rand() may return deterministic values, is that what you want? How can I modify:

Re: [Semibug] Help with Random Password Generator

2024-04-11 Thread Steve Litt
Jonathan Drews said on Wed, 10 Apr 2024 22:28:41 -0600 >I get the following warning when I link the program RandomPasswdGen > >$ cc -Wall -c randpass.c >$ cc randpass.o -o RandomPasswdGen > randpass.c(randpass.o:(main)): warning: rand() may return > deterministic values, >is that what you want? >

[Semibug] Help with Random Password Generator

2024-04-10 Thread Jonathan Drews
I get the following warning when I link the program RandomPasswdGen $ cc -Wall -c randpass.c $ cc randpass.o -o RandomPasswdGen randpass.c(randpass.o:(main)): warning: rand() may return deterministic values, is that what you want? How can I modify: