Blame SOURCES/autofs-5.1.5-remove-a-couple-of-old-debug-messages.patch

1c5f92
autofs-5.1.5 - remove a couple of old debug messages
1c5f92
1c5f92
From: Ian Kent <raven@themaw.net>
1c5f92
1c5f92
Remove a couple of debug log messages from lookup_ghost().
1c5f92
These messages have not shown a problem here and should be
1c5f92
removed.
1c5f92
1c5f92
Signed-off-by: Ian Kent <raven@themaw.net>
1c5f92
---
1c5f92
 CHANGELOG       |    1 +
1c5f92
 daemon/lookup.c |    5 -----
1c5f92
 2 files changed, 1 insertion(+), 5 deletions(-)
1c5f92
1c5f92
--- autofs-5.1.4.orig/CHANGELOG
1c5f92
+++ autofs-5.1.4/CHANGELOG
1c5f92
@@ -57,6 +57,7 @@ xx/xx/2018 autofs-5.1.5
1c5f92
 - change expire type naming to better reflect usage.
1c5f92
 - remove unused function has_fstab_option().
1c5f92
 - remove unused function reverse_mnt_list().
1c5f92
+- remove a couple of old debug messages.
1c5f92
 
1c5f92
 19/12/2017 autofs-5.1.4
1c5f92
 - fix spec file url.
1c5f92
--- autofs-5.1.4.orig/daemon/lookup.c
1c5f92
+++ autofs-5.1.4/daemon/lookup.c
1c5f92
@@ -793,11 +793,6 @@ int lookup_ghost(struct autofs_point *ap
1c5f92
 
1c5f92
 			/* Directory already exists? */
1c5f92
 			if (!ret) {
1c5f92
-				/* Shouldn't need this
1c5f92
-				me->dev = st.st_dev;
1c5f92
-				me->ino = st.st_ino;
1c5f92
-				*/
1c5f92
-				debug(ap->logopt, "me->dev %d me->ino %d", me->dev, me->ino);
1c5f92
 				free(fullpath);
1c5f92
 				goto next;
1c5f92
 			}