Example: mldap_modify_ex

In the following example, the mldap_modify_ex function changes the name attribute to Jane.

mldap_modify_ex(pldap, "LDAP Modify",
         "DN=cn=Sally R. Jones,OU=Sales,DC=TECHNO,DC=com",
         "AttrName=name",    // Name of attribute
         "AttrValue=Jane",    // New Value
         LAST );