From cfd432e63d77478d913497a62827ed95c56dda73 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sun, 18 Jun 2006 17:18:03 +0200 Subject: Remove ranges from switch statements. Though very nice and readable, the "case 'a'...'z':" construct is not ANSI C99 compliant. This patch unfolds the range in `quote.c' and substitutes the switch-statement with an if-statement in `http-fetch.c' and `http-push.c'. Signed-off-by: Florian Forster Signed-off-by: Junio C Hamano --- quote.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'quote.c') diff --git a/quote.c b/quote.c index 06792d47c3..dcc2326610 100644 --- a/quote.c +++ b/quote.c @@ -206,7 +206,14 @@ char *unquote_c_style(const char *quoted, const char **endp) case '\\': case '"': break; /* verbatim */ - case '0'...'7': + case '0': + case '1': + case '2': + case '3': + case '4': + case '5': + case '6': + case '7': /* octal */ ac = ((ch - '0') << 6); if ((ch = *sp++) < '0' || '7' < ch) -- cgit v1.2.1