From d678d80c5394959f8c42e0ebba4052f2d24dfbbb Mon Sep 17 00:00:00 2001 From: mar Date: Tue, 28 Jul 1992 17:45:49 +0000 Subject: [PATCH] handle non-lower case letters in AFS redirection differently --- clients/moira/attach.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/clients/moira/attach.c b/clients/moira/attach.c index a53d6bfc..2ee65f18 100644 --- a/clients/moira/attach.c +++ b/clients/moira/attach.c @@ -358,8 +358,10 @@ Bool name; if (islower(*p)) { strcat(temp_buf, "/x"); temp_buf[strlen(temp_buf)-1] = *p; - } else - strcat(temp_buf, "/other"); + } else { + sprintf(temp_buf, "/afs/%s/%s/other", info[FS_MACHINE], path); + break; + } } } else if (depth = -1) { if (isdigit(info[FS_NAME][0])) { -- 2.45.2