aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1993-11-23 03:23:05 +0000
committerRichard M. Stallman <[email protected]>1993-11-23 03:23:05 +0000
commit05be3f1a8a6e2b13b078511e65ccddc8b95463d2 (patch)
tree35f3e59927e70e9cfa535aded3c2fdfb72a50bf4
parent55e86af6f55b95f484d01a95145ab8f2b2377da0 (diff)
(search_magic_path): Fix colon-colon case.
-rw-r--r--src/xrdb.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xrdb.c b/src/xrdb.c
index 354d38a52b..4c80d05553 100644
--- a/src/xrdb.c
+++ b/src/xrdb.c
@@ -348,7 +348,8 @@ search_magic_path (search_path, class, escaped_suffix, suffix)
if (path)
return path;
- s = p + 1;
+ /* Skip the first colon. */
+ p++;
continue;
}