chboard.c
上传用户:minyiyu
上传日期:2018-12-24
资源大小:864k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Unix_Linux

  1. /*
  2.  * chboard.c -- translate old anonymous board flag setting.
  3.  *
  4.  * A part of Firebird BBS 3.0 utility kit
  5.  *
  6.  * Copyright (c) 1999, Edward Ping-Da Chuang <edwardc@firebird.dhs.org>
  7.  * All rights reserved.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  *
  18.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  19.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  20.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  21.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  22.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  23.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  24.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  25.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  26.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  27.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  28.  * SUCH DAMAGE.
  29.  *
  30.  * CVS: $Id: chboard.c,v 1.1 2000/01/15 01:45:42 edwardc Exp $
  31.  */
  32. #include "bbs.h"
  33. #define MBOARDS BBSHOME"/"BOARDS
  34. int
  35. report() {}
  36. int
  37. main()
  38. {
  39. FILE           *rec;
  40. int             i = 0;
  41. struct boardheader board;
  42. rec = fopen(MBOARDS, "rb");
  43. printf("Board Records Transfering...n");
  44. while (1) {
  45. if (fread(&board, sizeof(board), 1, rec) <= 0)
  46. break;
  47. i++;
  48. printf("%d %stn", i, board.filename);
  49. if ( !strcmp(board.filename, "anonymous") ) {
  50. board.flag |= ANONY_FLAG;
  51. printf("%s set to anonymous.n", board.filename);
  52. substitute_record(MBOARDS, &board, sizeof(board), i);
  53. } else {
  54. board.flag &= ~ANONY_FLAG;
  55. substitute_record(MBOARDS, &board, sizeof(board), i);
  56. }
  57. }
  58. printf("n%d Board Records Transferred...n", i);
  59. fclose(rec);
  60. }