From 85db3fa42563065d9f721be07f93eeffb789d22b Mon Sep 17 00:00:00 2001 From: Nickolai Zeldovich Date: Mon, 12 Aug 2002 22:27:51 +0000 Subject: [PATCH] Don't print out-of-range index error messages when all it means is that we've reached the end of the server list. --- src/volser/vos.c | 4 ++++ 1 file changed, 4 insertions(+) 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); -- 2.39.5