From: Nickolai Zeldovich Date: Mon, 12 Aug 2002 22:27:51 +0000 (+0000) Subject: Don't print out-of-range index error messages when all it means X-Git-Tag: openafs-devel_1_3_3~16 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=85db3fa42563065d9f721be07f93eeffb789d22b;p=packages%2Fo%2Fopenafs.git Don't print out-of-range index error messages when all it means is that we've reached the end of the server list. --- diff --git a/src/volser/vos.c b/src/volser/vos.c index 056048f6f..8709da820 100644 --- a/src/volser/vos.c +++ b/src/volser/vos.c @@ -3976,6 +3976,10 @@ register struct cmd_syndesc *as; continue; } + if (vcode == VL_INDEXERANGE) { + break; + } + if (vcode) { fprintf(STDERR,"vos: could not list the server addresses\n"); PrintError("",vcode);