diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-09-23 15:36:33 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-09-23 15:36:33 +0000 |
commit | 69dc2af6fca866fbcb3234bba4276391d35aa063 (patch) | |
tree | 1f9c4e7ceacb7896e056616674b7b45af6845ebd /usr.bin/cvs/proto.c | |
parent | eeaf8fa26721f3f2ad35980f7ce9a090a912c05d (diff) |
Lower the level of an error message
Diffstat (limited to 'usr.bin/cvs/proto.c')
-rw-r--r-- | usr.bin/cvs/proto.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/proto.c b/usr.bin/cvs/proto.c index 66a6535282c..9233a921eac 100644 --- a/usr.bin/cvs/proto.c +++ b/usr.bin/cvs/proto.c @@ -1,4 +1,4 @@ -/* $OpenBSD: proto.c,v 1.24 2004/08/27 12:42:45 jfb Exp $ */ +/* $OpenBSD: proto.c,v 1.25 2004/09/23 15:36:32 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -666,7 +666,7 @@ cvs_sendreq(struct cvsroot *root, u_int rid, const char *arg) /* is this request supported by the server? */ if (!CVS_GETVR(root, req->req_id)) { - cvs_log(LP_ERR, "remote end does not support request `%s'", + cvs_log(LP_WARN, "remote end does not support request `%s'", req->req_str); return (-1); } |