change #include to move foo.h to libowfat/foo.h (needs current libowfat now)

This commit is contained in:
leitner
2017-04-21 16:23:38 +00:00
parent 5664e1796a
commit 1d95650489
56 changed files with 183 additions and 164 deletions

View File

@@ -39,7 +39,7 @@ size_t scan_ldapsearchrequest(const char* src,const char* max,
if (src+res==nmax) break;
if (!*a) *a=calloc(1,sizeof(struct AttributeDescriptionList));
if (!*a) goto error;
if (!(tmp=scan_ldapstring(src+res,nmax,&(*a)->a))) { free(*a); goto error; }
if (!(tmp=scan_ldapstring(src+res,nmax,&(*a)->a))) { goto error; }
res+=tmp;
a=&(*a)->next;
}