/* * call-seq: * LDAP.err2string(err) => String * * Return the text string associated with the LDAP error, +err+. */ VALUE rb_ldap_err2string (VALUE self, VALUE err) { char *cmsg; VALUE msg; cmsg = ldap_err2string (NUM2INT (err)); msg = rb_tainted_str_new2 (cmsg); return msg; }