1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

Make tevent_req_is_ldap_error public

This commit is contained in:
Volker Lendecke 2009-06-19 12:41:16 +02:00
parent 5cb6bf6f9d
commit 663e841ecd
2 changed files with 3 additions and 1 deletions

View File

@ -45,6 +45,8 @@ struct tldap_mod {
DATA_BLOB *values;
};
bool tevent_req_is_ldap_error(struct tevent_req *req, int *perr);
struct tldap_context *tldap_context_create(TALLOC_CTX *mem_ctx, int fd);
bool tldap_context_setattr(struct tldap_context *ld,
const char *name, const void *pptr);

View File

@ -19,7 +19,7 @@
#include "includes.h"
static bool tevent_req_is_ldap_error(struct tevent_req *req, int *perr)
bool tevent_req_is_ldap_error(struct tevent_req *req, int *perr)
{
enum tevent_req_state state;
uint64_t err;