[OpenAFS-devel] 1.3.85: --enable-supergroups broken

Harald Barth haba@pdc.kth.se
Fri, 05 Aug 2005 10:38:51 +0200 (MEST)


I don't know if this is fixed in current, but 1.3.85 barfs in line 1997

ptprocs.c:

afs_int32
SPR_ListSuperGroups(call, aid, alist, over)
     struct rx_call *call;
     afs_int32 aid;
     prlist *alist;
     afs_int32 *over;
{
#if defined(SUPERGROUPS)
    afs_int32 code;
    afs_int32 cid = ANONYMOUSID;

    code = listSuperGroups(call, aid, alist, over, &cid);
    osi_auditU(call, PTS_LstSGrps, code, AUD_ID, aid, AUD_END); /* line 1997 */
    ViceLog(125, ("PTS_ListSuperGroups: code %d cid %d aid %d", code, cid, aid));
    return code;
#else
    return RXGEN_OPCODE;
#endif
}

at PTS_LstSGrps as undefined.

Harald.