From: Marc Dionne Date: Thu, 22 Sep 2011 23:09:52 +0000 (-0400) Subject: viced: fix incorrect error message X-Git-Tag: openafs-stable-1_8_0pre1~3234 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=a020c572d372f2e86807dc4c75ec50ff14ef2fba viced: fix incorrect error message The error message was obviously copied from another location in the code (after the pr_Initialize call) and is misleading. Adapt it for vl_Initialize failure. Change-Id: I4fc65fd82b92df3298227abf3f6bcc24184ebfe8 Reviewed-on: http://gerrit.openafs.org/5490 Tested-by: BuildBot Reviewed-by: Derrick Brashear --- diff --git a/src/viced/viced.c b/src/viced/viced.c index ef0fe5a..8bca993 100644 --- a/src/viced/viced.c +++ b/src/viced/viced.c @@ -1849,7 +1849,7 @@ InitVL(void) code = vl_Initialize(AFSDIR_SERVER_ETC_DIRPATH); if (code != 0) { ViceLog(0, - ("Couldn't initialize protection library; code=%d.\n", code)); + ("Couldn't initialize volume location library; code=%d.\n", code)); return code; }