]> andersk Git - moira.git/commitdiff
handle non-lower case letters in AFS redirection differently
authormar <mar>
Tue, 28 Jul 1992 17:45:49 +0000 (17:45 +0000)
committermar <mar>
Tue, 28 Jul 1992 17:45:49 +0000 (17:45 +0000)
clients/moira/attach.c

index a53d6bfcf285626f755883e4a8831d8430631468..2ee65f18f601d56c160d45dfbfec1614a1fe95d2 100644 (file)
@@ -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])) {
This page took 0.094224 seconds and 5 git commands to generate.