diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2000-10-02 06:33:59 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2000-10-02 06:33:59 +0000 |
| commit | d65e2e3fd6d2fae775587bc7e7fd82dae22de4ec (patch) | |
| tree | 69361a1e7edad9b079647803c60eec4bbeeabe2f /contrib/cvs/src/create_adm.c | |
| parent | 6adbf7beeb8444a3af05381ac20070a4922c27df (diff) | |
| parent | a3b502f88fd3d67bf547634d411d567524c4c1b1 (diff) | |
Notes
Diffstat (limited to 'contrib/cvs/src/create_adm.c')
| -rw-r--r-- | contrib/cvs/src/create_adm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/contrib/cvs/src/create_adm.c b/contrib/cvs/src/create_adm.c index 7f8f581b0b92..878b05891a4e 100644 --- a/contrib/cvs/src/create_adm.c +++ b/contrib/cvs/src/create_adm.c @@ -22,7 +22,8 @@ don't print warnings; all errors are fatal then. */ int -Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn) +Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn, + dotemplate) char *dir; char *update_dir; char *repository; @@ -30,6 +31,7 @@ Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn) char *date; int nonbranch; int warn; + int dotemplate; { FILE *fout; char *cp; @@ -168,7 +170,7 @@ Create_Admin (dir, update_dir, repository, tag, date, nonbranch, warn) WriteTag (dir, tag, date, nonbranch, update_dir, repository); #ifdef SERVER_SUPPORT - if (server_active) + if (server_active && dotemplate) { server_template (update_dir, repository); } |
