/***************************************************************************** * * $Id: mbtoberep.c,v 1.3 2005/10/11 20:49:49 mbse Exp $ * Purpose ...............: Show contents of toberep.data * ***************************************************************************** * Copyright (C) 1997-2005 * * Michiel Broek FIDO: 2:280/2802 * Beekmansbos 10 * 1971 BV IJmuiden * the Netherlands * * This file is part of MBSE BBS. * * This BBS is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2, or (at your option) any * later version. * * MBSE BBS is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with MBSE BBS; see the file COPYING. If not, write to the Free * Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *****************************************************************************/ #include "../config.h" #include "../lib/mbselib.h" int main(int argc, char **argv) { char *BBSpath; char *temp; FILE *fp; struct _filerecord rep; int i; time_t tt; if ((BBSpath = getenv("MBSE_ROOT")) == NULL) { printf("MBSE_ROOT variable not set\n"); exit(MBERR_INIT_ERROR); } temp = calloc(PATH_MAX, sizeof(char)); snprintf(temp, PATH_MAX, "%s/etc/toberep.data", BBSpath); if ((fp = fopen(temp, "r")) == NULL) { printf("File %s not found\n", temp); free(temp); exit(MBERR_INIT_ERROR); } while (fread(&rep, sizeof(rep), 1, fp) == 1) { printf("File echo %s\n", rep.Echo); printf("Comment %s\n", rep.Comment); printf("Group %s\n", rep.Group); printf("Short name %s\n", rep.Name); printf("Long name %s\n", rep.LName); printf("File size %u\n", (int)rep.Size); printf("File size Kb %u\n", rep.SizeKb); tt = (time_t)rep.Fdate; printf("File date %s", ctime(&tt)); printf("File CRC %s\n", rep.Crc); printf("Origin system %s\n", rep.Origin); printf("From system %s\n", rep.From); printf("Replace %s\n", rep.Replace); printf("Magic %s\n", rep.Magic); printf("Announce "); if (rep.Announce) printf("yes\n"); else printf("no\n"); printf("Description %s\n", rep.Desc); for (i = 0; i < rep.TotLdesc; i++) { printf(" %2d %s\n", (int)strlen(rep.LDesc[i]), rep.LDesc[i]); } printf("\n\n"); } fclose(fp); chmod(temp, 0640); free(temp); return 0; }