m_webirc: use rb_crypt() instead of crypt()

This commit is contained in:
Jilles Tjoelker 2008-12-13 11:49:28 +01:00
parent 0c0fc97605
commit f24b187a8e
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ mr_webirc(struct Client *client_p, struct Client *source_p, int parc, const char
if (EmptyString(parv[1]))
encr = "";
else if (IsConfEncrypted(aconf))
encr = crypt(parv[1], aconf->passwd);
encr = rb_crypt(parv[1], aconf->passwd);
else
encr = parv[1];