From: mar Date: Mon, 26 Sep 1988 14:08:35 +0000 (+0000) Subject: don't report machine 0 not being in any clusters X-Git-Tag: KREL1~125 X-Git-Url: http://andersk.mit.edu/gitweb/moira.git/commitdiff_plain/6489a1abd8d32d7a4e7b61d4e758495aff1ca2c5 don't report machine 0 not being in any clusters --- diff --git a/dbck/phase3.qc b/dbck/phase3.qc index e5540f1e..4bc5dc91 100644 --- a/dbck/phase3.qc +++ b/dbck/phase3.qc @@ -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); }