diff --git a/src/viced/host.c b/src/viced/host.c index f26439c63f..bf5aeb6ea5 100644 --- a/src/viced/host.c +++ b/src/viced/host.c @@ -1087,7 +1087,10 @@ h_Enumerate(int (*proc) (), char *param) if (!(held[count] = h_Held_r(host))) h_Hold_r(host); } - assert(count == hostCount); + if (count != hostCount) { + ViceLog(0, ("h_Enumerate found %d of %d hosts\n", count, hostCount)); + } + assert(count <= hostCount); H_UNLOCK; for (i = 0; i < count; i++) { held[i] = (*proc) (list[i], held[i], param);