]> andersk Git - moira.git/commitdiff
don't canonicalize_hostname() the cluster name!
authormar <mar>
Thu, 13 Jul 1989 16:17:49 +0000 (16:17 +0000)
committermar <mar>
Thu, 13 Jul 1989 16:17:49 +0000 (16:17 +0000)
clients/moira/cluster.c

index f1980f22e03b0b157ce95e853ab0db1a64e0bdf8..e1b9b380ff93c07506f2f977af6c678c4454a720 100644 (file)
@@ -718,13 +718,10 @@ int argc;
 char ** argv;
 {
     struct qelem *top;
-    char *tmpname;
 
-    tmpname = canonicalize_hostname(strsave(argv[1]));
-    top = GetMCInfo(CLUSTER, tmpname, (char *) NULL);
+    top = GetMCInfo(CLUSTER, argv[1], (char *) NULL);
     Loop(top, (void *) PrintClusterInfo);
     FreeQueue(top);
-    free(tmpname);
     return(DM_NORMAL);
 }
 
This page took 0.056028 seconds and 5 git commands to generate.