Blame SOURCES/autofs-5.0.8-fix-symlink-fail-message-in-mount_bind-c.patch

304803
autofs-5.0.8 - fix symlink fail message in mount_bind.c
304803
304803
From: Ian Kent <raven@themaw.net>
304803
304803
304803
---
304803
 CHANGELOG            |    1 +
304803
 modules/mount_bind.c |    2 +-
304803
 2 files changed, 2 insertions(+), 1 deletion(-)
304803
304803
--- autofs-5.0.7.orig/CHANGELOG
304803
+++ autofs-5.0.7/CHANGELOG
304803
@@ -78,6 +78,7 @@
304803
 - fix max() declaration.
304803
 - setup program map env from macro table.
304803
 - add short host name standard marco variable.
304803
+- fix symlink fail message in mount_bind.c.
304803
 
304803
 25/07/2012 autofs-5.0.7
304803
 =======================
304803
--- autofs-5.0.7.orig/modules/mount_bind.c
304803
+++ autofs-5.0.7/modules/mount_bind.c
304803
@@ -206,7 +206,7 @@ int mount_mount(struct autofs_point *ap,
304803
 		if (symlink(what, fullpath) && errno != EEXIST) {
304803
 			error(ap->logopt,
304803
 			      MODPREFIX
304803
-			      "failed to create local mount %s -> %s",
304803
+			      "failed to create symlink %s -> %s",
304803
 			      fullpath, what);
304803
 			if ((ap->flags & MOUNT_FLAG_GHOST) && !status)
304803
 				if (mkdir_path(fullpath, 0555) && errno != EEXIST) {