Annotation of 43BSDReno/contrib/isode-beta/dsap/common/dn_free.c, revision 1.1

1.1     ! root        1: #include "quipu/util.h"
        !             2: #include "quipu/name.h"
        !             3: 
        !             4: dn_comp_free (dn)
        !             5: DN dn;
        !             6: {
        !             7:        rdn_free (dn->dn_rdn);
        !             8:        free ((char *) dn);
        !             9: }
        !            10: dn_free (dn)
        !            11: DN dn;
        !            12: {
        !            13: register DN eptr;
        !            14: register DN next;
        !            15: 
        !            16:        for (eptr = dn; eptr != NULLDN; eptr=next) {
        !            17:                next = eptr->dn_parent;
        !            18:                dn_comp_free (eptr);
        !            19:        }
        !            20: }
        !            21: 

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.