diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-14 03:33:10 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-07-14 03:33:10 +0000 |
commit | 937d3eaef1b8e444fed8680b7bd02eb7a889ef16 (patch) | |
tree | dc792d414ce45572514a329c5984a8854d5976cc /usr.bin/cvs/cvs.c | |
parent | 7758ae017f914a3a4224747f433df34d118a94fb (diff) |
cvsignore support and simpler API for file access
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 8ec94769df0..2ae53090b5a 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,5 +1,5 @@ #define DEBUG -/* $OpenBSD: cvs.c,v 1.1 2004/07/13 22:02:40 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.2 2004/07/14 03:33:09 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -372,6 +372,8 @@ main(int argc, char **argv) /* setup signal handlers */ signal(SIGCHLD, sigchld_hdlr); + cvs_file_init(); + if (readrc) cvs_readrc(); |