ramzez,

On Thursday 14 February 2002 10:18, you said something about:
> Hi...
>
>    The perl script works fantastic; but I can't do it self in C... when try
> to use the crypt function, I receive the message:
> /tmp/cc2iFds4.o(.text+0x3e): undefined reference to `crypt'
>   Please someone help me

Did you read the man page? 
man crypt

You need to have at least this...
<excerpt>
#define _XOPEN_SOURCE
#include <unistd.h>

char *crypt(const char *key, const char *salt);
</excerpt>

-- 
Brian Ashe                                                     CTO
Dee-Web Software Services, LLC.                  [EMAIL PROTECTED]



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to