From 3b598d615caafb78d3a6a2aeca3d3618f02b8a48 Mon Sep 17 00:00:00 2001 From: tobias Date: Sat, 4 Feb 2012 21:22:32 +0000 Subject: Sync rcsparse between OpenCVS/OpenRCS. Spaces, no binary change. --- usr.bin/cvs/rcsparse.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr.bin/cvs/rcsparse.c') diff --git a/usr.bin/cvs/rcsparse.c b/usr.bin/cvs/rcsparse.c index 149a6faed5c..737d212e038 100644 --- a/usr.bin/cvs/rcsparse.c +++ b/usr.bin/cvs/rcsparse.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsparse.c,v 1.5 2011/05/04 17:37:33 nicm Exp $ */ +/* $OpenBSD: rcsparse.c,v 1.6 2012/02/04 21:22:32 tobias Exp $ */ /* * Copyright (c) 2010 Tobias Stoeckmann * @@ -924,21 +924,21 @@ rcsparse_token(RCSFILE *rfp, int allowed) } return (ret); /* NOTREACHED */ - case ':': + case ':': type = RCS_TOK_COLON; if (type & allowed) return (type); rcsparse_warnx(rfp, "unexpected token \"%c\"", c); return (0); /* NOTREACHED */ - case ';': + case ';': type = RCS_TOK_SCOLON; if (type & allowed) return (type); rcsparse_warnx(rfp, "unexpected token \"%c\"", c); return (0); /* NOTREACHED */ - case ',': + case ',': type = RCS_TOK_COMMA; if (type & allowed) return (type); -- cgit v1.2.3-59-g8ed1b