Deleted Added
full compact
mkmodules.c (17722) mkmodules.c (18592)
1/*
2 * Copyright (c) 1992, Brian Berliner and Jeff Polk
3 * Copyright (c) 1989-1992, Brian Berliner
4 *
5 * You may distribute under the terms of the GNU General Public License as
6 * specified in the README file that comes with the CVS kit. */
7
8#include "cvs.h"

--- 630 unchanged lines hidden (view full) ---

639 char *info;
640 /* Name of ,v file for this administrative file. */
641 char *info_v;
642
643 const struct admin_file *fileptr;
644
645 umask (cvsumask);
646
1/*
2 * Copyright (c) 1992, Brian Berliner and Jeff Polk
3 * Copyright (c) 1989-1992, Brian Berliner
4 *
5 * You may distribute under the terms of the GNU General Public License as
6 * specified in the README file that comes with the CVS kit. */
7
8#include "cvs.h"

--- 630 unchanged lines hidden (view full) ---

639 char *info;
640 /* Name of ,v file for this administrative file. */
641 char *info_v;
642
643 const struct admin_file *fileptr;
644
645 umask (cvsumask);
646
647 if (argc > 1)
647 if (argc == -1 || argc > 1)
648 usage (init_usage);
649
650 if (client_active)
651 {
652 start_server ();
653
654 ign_setup ();
655 send_init_command ();

--- 87 unchanged lines hidden ---
648 usage (init_usage);
649
650 if (client_active)
651 {
652 start_server ();
653
654 ign_setup ();
655 send_init_command ();

--- 87 unchanged lines hidden ---