From d87fdb50db5c306973f4f379e82d992d18244c34 Mon Sep 17 00:00:00 2001 From: Marc Dionne Date: Thu, 22 Sep 2011 19:09:52 -0400 Subject: [PATCH] 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. Reviewed-on: http://gerrit.openafs.org/5490 Tested-by: BuildBot Reviewed-by: Derrick Brashear (cherry picked from commit a020c572d372f2e86807dc4c75ec50ff14ef2fba) Change-Id: I067ceb0e5e2281508647065f11e48d4a07033c99 Reviewed-on: http://gerrit.openafs.org/9432 Reviewed-by: Derrick Brashear Tested-by: Andrew Deason Reviewed-by: Andrew Deason Reviewed-by: Stephan Wiesand --- src/viced/viced.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/viced/viced.c b/src/viced/viced.c index d717b2da5..40d90874f 100644 --- a/src/viced/viced.c +++ b/src/viced/viced.c @@ -1905,7 +1905,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; } -- 2.39.5