From 2b10d96762366ce25a4816641ecfaf9705592d44 Mon Sep 17 00:00:00 2001 From: Perry Ruiter Date: Mon, 8 Dec 2014 12:33:05 -0800 Subject: [PATCH] afs: Correct routine name on error message While studying some code I noticed one of the error messages in afs_UFSGetVolSlot was prefixed with a different routine name. More shocking was that git blame fingered me as the last person to update that line! Indeed I had but I hadn't noticed, nor had my reviewers, the mis-matched routine name. Update afs/afs_volume.c to correct routine name. Change-Id: Id7ee275c9f8991bb71082b9dfcd52c14ead83955 Reviewed-on: http://gerrit.openafs.org/11625 Reviewed-by: Chas Williams - CONTRACTOR Tested-by: BuildBot Reviewed-by: Jeffrey Altman --- src/afs/afs_volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/afs/afs_volume.c b/src/afs/afs_volume.c index bf53767ed..1caaf03cb 100644 --- a/src/afs/afs_volume.c +++ b/src/afs/afs_volume.c @@ -259,7 +259,7 @@ afs_UFSGetVolSlot(afs_int32 volid, struct cell *tcell) &staticFVolume, sizeof(struct fvolume)); osi_UFSClose(tfile); if (code != sizeof(struct fvolume)) { - afs_warn("afs_SetupVolume: error %d reading volumeinfo\n", + afs_warn("afs_UFSGetVolSlot: error %d reading volumeinfo\n", (int)code); } } -- 2.39.5