summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authortnn <tnn@pkgsrc.org>2008-04-26 22:42:49 +0000
committertnn <tnn@pkgsrc.org>2008-04-26 22:42:49 +0000
commitae05948c530aeba01151f504db3f46da59065d0b (patch)
tree5adaed64bff69a6bc41b10d9003ce980b7752d62 /net
parent896194fdf1829fb906e7c98b4f7d2a83d118934a (diff)
downloadpkgsrc-ae05948c530aeba01151f504db3f46da59065d0b.tar.gz
fix build with Sun Studio by not using ranges in case stmt.
Diffstat (limited to 'net')
-rw-r--r--net/libfetch/files/fetch.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/net/libfetch/files/fetch.c b/net/libfetch/files/fetch.c
index d322054bef6..393dc621243 100644
--- a/net/libfetch/files/fetch.c
+++ b/net/libfetch/files/fetch.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fetch.c,v 1.11 2008/04/25 19:59:30 joerg Exp $ */
+/* $NetBSD: fetch.c,v 1.12 2008/04/26 22:42:49 tnn Exp $ */
/*-
* Copyright (c) 1998-2004 Dag-Erling Coïdan Smørgrav
* Copyright (c) 2008 Joerg Sonnenberger <joerg@NetBSD.org>
@@ -300,10 +300,11 @@ fetchMakeURL(const char *scheme, const char *host, int port, const char *doc,
int
fetch_urlpath_safe(char x)
{
+ if ((x >= '0' && x <= '9') || (x >= 'A' && x <= 'Z') ||
+ (x >= 'a' && x <= 'z'))
+ return 1;
+
switch (x) {
- case 'a'...'z':
- case 'A'...'Z':
- case '0'...'9':
case '$':
case '-':
case '_':