diff options
-rw-r--r-- | util/Makefile | 2 | ||||
-rw-r--r-- | util/rmuid.c | 52 |
2 files changed, 1 insertions, 53 deletions
diff --git a/util/Makefile b/util/Makefile index cc94fdd5..63f3552f 100644 --- a/util/Makefile +++ b/util/Makefile @@ -20,7 +20,7 @@ MBBSD_OBJS= \ CPROG_WITH_UTIL= \ boardlist BM_money post poststat \ jungo account birth deluserfile \ - expire mandex rmuid horoscope \ + expire mandex horoscope \ openvice parse_news openticket topusr \ yearsold toplazyBM toplazyBBM writemoney \ reaper buildAnnounce inndBM mailangel \ diff --git a/util/rmuid.c b/util/rmuid.c deleted file mode 100644 index b528e01d..00000000 --- a/util/rmuid.c +++ /dev/null @@ -1,52 +0,0 @@ -/* $Id$ */ -#include <stdio.h> - -#if 0 -#include "bbs.h" - -extern int numboards; -extern boardheader_t *bcache; - -int getbidofuid(int uid) -{ - register int n; boardheader_t *bh; - if(!uid) return 1; - for (n=0;n<numboards;n++) - { - bh = &bcache[n]; - /* unused == uid!? don't use a variable claimed as 'unused!' */ - if(bh->unused == uid) - return n+1; - } - return 1; -} -#endif - -int main(int argc, char* argv[]) -{ - fprintf(stderr, "This utility is marked as broken.\n"); - -#if 0 - //struct stat st; - int n; - boardheader_t bh; - //char pathname[1024]; - - attach_SHM(); - resolve_boards(); - for (n=0;n<numboards;n++){ - memcpy( &bh, &bcache[n], sizeof(bh)); - bh.gid=getbidofuid(bh.gid); - //printf("%14.14s%14.14s \r\n",bh.brdname, bh.title); - substitute_record("BOARDS.bid", &bh, sizeof(bh), n+1); - } -#endif - return 0; -} - - - - - - - |