From 63fb9cd1d4dee92be77141fa45d8534432bb3110 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Mon, 11 Aug 2003 23:22:02 +0000 Subject: [PATCH] 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) --- src/ptserver/ptprocs.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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; -- 2.39.5