diff options
author | 2007-02-09 03:49:15 +0000 | |
---|---|---|
committer | 2007-02-09 03:49:15 +0000 | |
commit | 34911d69726ea14efa5ce4b8da548261e59ce801 (patch) | |
tree | ea2790e5519d291883db64c068fe15c123530079 /usr.bin/cvs/edit.c | |
parent | strtol(3) -> strtonum(3) (diff) | |
download | wireguard-openbsd-34911d69726ea14efa5ce4b8da548261e59ce801.tar.xz wireguard-openbsd-34911d69726ea14efa5ce4b8da548261e59ce801.zip |
remove the cvs_file_classify() `loud' argument, it was used
in the old school days and serves no purpose what so ever now.
otto@ mentioned this to me a while ago
Diffstat (limited to 'usr.bin/cvs/edit.c')
-rw-r--r-- | usr.bin/cvs/edit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/edit.c b/usr.bin/cvs/edit.c index 79fcdb6e51b..7c8bf893b67 100644 --- a/usr.bin/cvs/edit.c +++ b/usr.bin/cvs/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.31 2007/01/25 18:56:33 otto Exp $ */ +/* $OpenBSD: edit.c,v 1.32 2007/02/09 03:49:15 joris Exp $ */ /* * Copyright (c) 2006, 2007 Xavier Santolaria <xsa@openbsd.org> * @@ -261,7 +261,7 @@ cvs_edit_local(struct cvs_file *cf) cvs_log(LP_TRACE, "cvs_edit_local(%s)", cf->file_path); - cvs_file_classify(cf, NULL, 0); + cvs_file_classify(cf, NULL); if ((fp = fopen(CVS_PATH_NOTIFY, "a")) == NULL) fatal("cvs_edit_local: fopen: `%s': %s", @@ -333,7 +333,7 @@ cvs_unedit_local(struct cvs_file *cf) cvs_log(LP_TRACE, "cvs_unedit_local(%s)", cf->file_path); - cvs_file_classify(cf, NULL, 0); + cvs_file_classify(cf, NULL); if (cvs_path_cat(CVS_PATH_BASEDIR, cf->file_name, bfpath, MAXPATHLEN) >= MAXPATHLEN) |