From: Derrick Brashear Date: Mon, 11 Aug 2003 23:22:02 +0000 (+0000) Subject: ptprocs-supergroups-stub-20030811 X-Git-Tag: openafs-devel-1_3_50~89 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=63fb9cd1d4dee92be77141fa45d8534432bb3110;p=packages%2Fo%2Fopenafs.git ptprocs-supergroups-stub-20030811 have a stub to go with the unifdef'd .xg file. ==================== This delta was composed from multiple commits as part of the CVS->Git migration. The checkin message with each commit was inconsistent. The following are the additional commit messages. ==================== have a stub to go with the unifdef'd .xg file. make the stub actually work. i wonder if it's ok to cheat like this. (return RXGEN_OPCODE) --- diff --git a/src/ptserver/ptprocs.c b/src/ptserver/ptprocs.c index ff6d4d82f..a4725c907 100644 --- a/src/ptserver/ptprocs.c +++ b/src/ptserver/ptprocs.c @@ -1908,7 +1908,6 @@ listElements(call, aid, alist, over) return code; } -#if defined(SUPERGROUPS) afs_int32 SPR_ListSuperGroups(call, aid, alist, over) @@ -1917,13 +1916,18 @@ SPR_ListSuperGroups(call, aid, alist, over) prlist *alist; afs_int32 *over; { +#if defined(SUPERGROUPS) afs_int32 code; code = listSuperGroups(call, aid, alist, over); osi_auditU(call, "PTS_LstSGrps", code, AUD_LONG, aid, AUD_END); return code; +#else + return RXGEN_OPCODE; +#endif } +#if defined(SUPERGROUPS) afs_int32 listSuperGroups(call, aid, alist, over) struct rx_call *call;