From: Perry Ruiter Date: Mon, 8 Dec 2014 20:33:05 +0000 (-0800) Subject: afs: Correct routine name on error message X-Git-Tag: upstream/1.8.0_pre1^2~431 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=2b10d96762366ce25a4816641ecfaf9705592d44;p=packages%2Fo%2Fopenafs.git 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 --- 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); } }