From cf63b587c9e6e6adb8a84fab5bf9b5c2a1390d45 Mon Sep 17 00:00:00 2001 From: Valery Yatsko Date: Sun, 27 Jul 2008 14:48:16 +0400 Subject: [PATCH] crypt -> rb_crypt in m_mkpasswd.c --- extensions/m_mkpasswd.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/extensions/m_mkpasswd.c b/extensions/m_mkpasswd.c index 242b066..b59997b 100644 --- a/extensions/m_mkpasswd.c +++ b/extensions/m_mkpasswd.c @@ -27,8 +27,6 @@ #include -extern char *crypt(); - static int m_mkpasswd(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]); static int mo_mkpasswd(struct Client *client_p, struct Client *source_p, @@ -90,7 +88,7 @@ m_mkpasswd(struct Client *client_p, struct Client *source_p, int parc, const cha sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), me.name, parv[0], "MKPASSWD"); else sendto_one_notice(source_p, ":Encryption for [%s]: %s", - parv[1], crypt(parv[1], + parv[1], rb_crypt(parv[1], is_md5 ? make_md5_salt() : make_salt())); @@ -132,7 +130,7 @@ mo_mkpasswd(struct Client *client_p, struct Client *source_p, int parc, const ch sendto_one(source_p, form_str(ERR_NEEDMOREPARAMS), me.name, parv[0], "MKPASSWD"); else sendto_one_notice(source_p, ":Encryption for [%s]: %s", - parv[1], crypt(parv[1], is_md5 ? make_md5_salt() : make_salt())); + parv[1], rb_crypt(parv[1], is_md5 ? make_md5_salt() : make_salt())); return 0; }