Files
mars-tinyldap/freeava.c
leitner 5413d2bdeb renamed a struct,
started ldapsearchresultentry formatter
fixed scan_ldapmessage to accept PRIMITIVE messages, too (unbind)
2002-01-14 21:23:33 +00:00

11 lines
184 B
C

#include <stdlib.h>
#include "ldap.h"
void freeava(struct AttributeDescriptionList* a) {
while (a) {
struct AttributeDescriptionList* tmp=a->next;
free(a);
a=tmp;
}
}