diff options
-rw-r--r-- | nslcd/common.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nslcd/common.h b/nslcd/common.h index 1fa272d..c7e3b13 100644 --- a/nslcd/common.h +++ b/nslcd/common.h @@ -77,10 +77,10 @@ int read_address(TFILE *fp,char *addr,int *addrlen,int *af); return -1; /* transforms the DN info a uid doing an LDAP lookup if needed */ -char *dn2uid(MYLDAP_SESSION *session,const char *dn,char *buf,size_t buflen); +MUST_USE char *dn2uid(MYLDAP_SESSION *session,const char *dn,char *buf,size_t buflen); /* transforms the uid into a DN by doing an LDAP lookup */ -char *uid2dn(MYLDAP_SESSION *session,const char *uid,char *buf,size_t buflen); +MUST_USE char *uid2dn(MYLDAP_SESSION *session,const char *uid,char *buf,size_t buflen); /* these are the different functions that handle the database specific actions, see nslcd.h for the action descriptions */ |