diff options
author | Joris Vink <joris@cvs.openbsd.org> | 2005-07-21 12:32:39 +0000 |
---|---|---|
committer | Joris Vink <joris@cvs.openbsd.org> | 2005-07-21 12:32:39 +0000 |
commit | 0bb10806bd13564b70e294ab0b6c8720f73c6b38 (patch) | |
tree | 7713b73e3e9cae427f56d0d1c3b54047e9cad1b7 | |
parent | ac3c63e95275935907d4ddaf1a466326f8f7003c (diff) |
show questionable files as '? foo' on the server side.
ok xsa@, jfb@
-rw-r--r-- | usr.bin/cvs/req.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/req.c b/usr.bin/cvs/req.c index 53b994d5d81..4b9aee369b9 100644 --- a/usr.bin/cvs/req.c +++ b/usr.bin/cvs/req.c @@ -1,4 +1,4 @@ -/* $OpenBSD: req.c,v 1.25 2005/07/19 15:30:37 xsa Exp $ */ +/* $OpenBSD: req.c,v 1.26 2005/07/21 12:32:38 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -445,6 +445,7 @@ cvs_req_filestate(int reqid, char *line) } break; case CVS_REQ_QUESTIONABLE: + cvs_printf("? %s\n", line); break; default: cvs_log(LP_ERR, "wrong request id type"); |