No problem, that anyhoo.
I figured out, that is't not actually the crypt that's the problem...
Here is the definition:
void function_name (DESCRIPTOR_DATA *d,const char *argument)
{
....
argument = one_argument((char*)argument, name);
if (!ch || (strncmp(crypt((char*)argument, GET_PASSWD(ch)), GET_PASSWD(ch),
MAX_PWD_LENGTH)))
....
}
So, it's trying to use 'argument' again, and it's a pointert (Right?)
I think I'm gonna define an arg1 and try
arg1 = one_argument((char*)argument, name);
etc...
On Fri 24 May 02 15:11, you wrote:
> Sorry for the double post to you. I realized I sent it to the wrong set of
> ppl to start with, guess I didn't get it stopped quick enough. :p
>
> Rheede