/*
* call-seq:
* mod.mod_type => String
*
* Return the name of the attribute associated with the LDAP::Mod object.
*/
VALUE
rb_ldap_mod_type (VALUE self)
{
RB_LDAPMOD_DATA *moddata;
GET_LDAPMOD_DATA (self, moddata);
return rb_tainted_str_new2 (moddata->mod->mod_type);
}