]> andersk Git - moira.git/commitdiff
don't report machine 0 not being in any clusters
authormar <mar>
Mon, 26 Sep 1988 14:08:35 +0000 (14:08 +0000)
committermar <mar>
Mon, 26 Sep 1988 14:08:35 +0000 (14:08 +0000)
dbck/phase3.qc

index e5540f1e4e359222e2d252ad56784a4aaa7b3547..4bc5dc91788d0e445684a87d54303e75aacf2760 100644 (file)
@@ -10,6 +10,8 @@
 
 #define NULL 0
 
+static char phase3_qc_rcsid[] = "$Header$";
+
 
 empty_list_check(id, l, hint)
 int id, hint;
@@ -54,7 +56,7 @@ noclu_mach_check(id, m, hint)
 int id, hint;
 struct machine *m;
 {
-    if (m->clucount == 0)
+    if (m->clucount == 0 && m->mach_id != 0)
       printf("Warning: machine %s is not in any clusters\n", m->name);
 }
 
This page took 0.720367 seconds and 5 git commands to generate.