m_webirc: use rb_crypt() instead of crypt()

This commit is contained in:
Jilles Tjoelker 2008-12-13 11:49:28 +01:00
parent 7a618bd339
commit f85a5a3f20

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];