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 <buildbot@rampaginggeek.com>
Reviewed-by: Derrick Brashear <shadow@dementix.org>
This commit is contained in:
Marc Dionne 2011-09-22 19:09:52 -04:00 committed by Derrick Brashear
parent 544ff1b295
commit a020c572d3

View File

@ -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;
}