last changes of crypt -> rb_crypt
This commit is contained in:
parent
cf63b587c9
commit
cd1dea9726
|
@ -55,8 +55,6 @@
|
|||
#include "reject.h"
|
||||
#include "sslproc.h"
|
||||
|
||||
extern char *crypt();
|
||||
|
||||
#ifndef INADDR_NONE
|
||||
#define INADDR_NONE ((unsigned int) 0xffffffff)
|
||||
#endif
|
||||
|
@ -343,7 +341,7 @@ check_server(const char *name, struct Client *client_p)
|
|||
|
||||
if(ServerConfEncrypted(tmp_p))
|
||||
{
|
||||
if(!strcmp(tmp_p->passwd, crypt(client_p->localClient->passwd,
|
||||
if(!strcmp(tmp_p->passwd, rb_crypt(client_p->localClient->passwd,
|
||||
tmp_p->passwd)))
|
||||
{
|
||||
server_p = tmp_p;
|
||||
|
|
|
@ -58,8 +58,6 @@
|
|||
static void report_and_set_user_flags(struct Client *, struct ConfItem *);
|
||||
void user_welcome(struct Client *source_p);
|
||||
|
||||
extern char *crypt();
|
||||
|
||||
char umodebuf[128];
|
||||
|
||||
static int orphaned_umodes = 0;
|
||||
|
@ -364,7 +362,7 @@ register_local_user(struct Client *client_p, struct Client *source_p, const char
|
|||
if(EmptyString(source_p->localClient->passwd))
|
||||
encr = "";
|
||||
else if(IsConfEncrypted(aconf))
|
||||
encr = crypt(source_p->localClient->passwd, aconf->passwd);
|
||||
encr = rb_crypt(source_p->localClient->passwd, aconf->passwd);
|
||||
else
|
||||
encr = source_p->localClient->passwd;
|
||||
|
||||
|
|
Loading…
Reference in New Issue