diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-10-07 21:47:33 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-10-07 21:47:33 +0000 |
commit | 72e54d6f66713dc2905d7b70108ffcfeda54f2bd (patch) | |
tree | 351fe44837a3a000bdf71a80e7c69dc3895d3d4e /usr.bin/cvs/req.c | |
parent | b691345e2ba6d65b165f2c2ffcc8810591f70b73 (diff) |
knf and spacing, ok joris@
Diffstat (limited to 'usr.bin/cvs/req.c')
-rw-r--r-- | usr.bin/cvs/req.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.bin/cvs/req.c b/usr.bin/cvs/req.c index d740df00eaa..e57aa1fc10a 100644 --- a/usr.bin/cvs/req.c +++ b/usr.bin/cvs/req.c @@ -1,4 +1,4 @@ -/* $OpenBSD: req.c,v 1.31 2005/09/15 17:01:10 xsa Exp $ */ +/* $OpenBSD: req.c,v 1.32 2005/10/07 21:47:32 reyk Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -69,7 +69,7 @@ static int cvs_req_command(int, char *); struct cvs_reqhdlr { - int (*hdlr)(int, char *); + int (*hdlr)(int, char *); } cvs_req_swtab[CVS_REQ_MAX + 1] = { { NULL }, { cvs_req_root }, @@ -440,7 +440,8 @@ cvs_req_filestate(int reqid, char *line) ent = cvs_ent_get(cvs_req_entf, line); if (ent == NULL) { cvs_log(LP_ERR, - "received Unchanged request for a non-existing file"); + "received Unchanged request " + "for a non-existing file"); ret = -1; } else { ent->ce_status = CVS_ENT_UPTODATE; |