Re: OT: Duplicate messages

2007-05-10 Thread jbuburuz
I am not getting duplicates. jerry > nope. > > > > -Original Message- >>From: Tom Yarrish <[EMAIL PROTECTED]> >>Sent: May 10, 2007 5:27 PM >>To: beginners@perl.org >>Subject: OT: Duplicate messages >> >>-BEGIN PGP SIGNED MESSAGE- >>Hash: SHA1 >> >>Hey all, >>Is it me or are there

Re: missing curly - brain fried

2007-06-28 Thread jbuburuz
> Where is the open curly missing here? > > #!/usr/bin/perl > > @array = (5,3,2,1,4); > > > for ($i=0; $i<$n-1; $i++) { I think its missing on the line bellow. I count three brackets bellow. > ( for ($j=0; $j<$n-1-$i; $j++) > > > if ($array[$j+1] < $array[$j]) { /* compare the two neighbors > *

crypt() and /etc/shadow entries do not match?

2007-05-02 Thread jbuburuz
Hey folks, I have been using crypt for a while. No problems until recently. Problem crypt does not return a hash that matches getpwnam(). I have been using crypt for a long time without any problems. Bellow is test script I have using for testing hashs. The output of the script bellow is as fol

Re: crypt() and /etc/shadow entries do not match?

2007-05-02 Thread jbuburuz
Thanks John and Chas! > [EMAIL PROTECTED] wrote: >> Hey folks, > > Hello, > >> I have been using crypt for a while. No problems until recently. >> >> Problem crypt does not return a hash that matches getpwnam(). I have >> been >> using crypt for a long time without any problems. >> >> Bellow is t