autofs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Ian Kent <raven@themaw.net>
To: autofs mailing list <autofs@vger.kernel.org>
Subject: [PATCH 27/27] autofs-5.1.3 - fix log message in spawn_umount()
Date: Mon, 11 Dec 2017 17:00:32 +0800	[thread overview]
Message-ID: <151298283271.19722.1032845511702316903.stgit@pluto.themaw.net> (raw)
In-Reply-To: <151298256987.19722.18421086447160152668.stgit@pluto.themaw.net>

A log message in spawn_umount() uses mount when it should be
using umount.

Signed-off-by: Ian Kent <raven@themaw.net>
---
 CHANGELOG      |    1 +
 daemon/spawn.c |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG b/CHANGELOG
index 30343332..49798a87 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -60,6 +60,7 @@ xx/xx/2017 autofs-5.1.4
 - fix memory leak in umount_amd_ext_mount().
 - fix strerror_r() parameter declaration in do program_mount().
 - fix incorrect check in validate_program_options().
+- fix log message in spawn_umount().
 
 24/05/2017 autofs-5.1.3
 =======================
diff --git a/daemon/spawn.c b/daemon/spawn.c
index 56133815..fabe577e 100644
--- a/daemon/spawn.c
+++ b/daemon/spawn.c
@@ -844,7 +844,7 @@ int spawn_umount(unsigned logopt, ...)
 			 * the mtab.
 			 */
 			if (!printed) {
-				debug(logopt, "mount failed with error code 16"
+				debug(logopt, "umount failed with error code 16"
 				      ", retrying with the -f option");
 				printed = 1;
 			}

--
To unsubscribe from this list: send the line "unsubscribe autofs" in

      parent reply	other threads:[~2017-12-11  9:00 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-12-11  8:56 [PATCH 00/27] Still trying to get 5.1.4 released Ian Kent
2017-12-11  8:57 ` [PATCH 01/27] autofs-5.1.3 - handle additional nfs versions in mount_nfs.c Ian Kent
2017-12-11  8:57 ` [PATCH 02/27] autofs-5.1.3 - fix symlink option passthrough " Ian Kent
2017-12-11  8:57 ` [PATCH 03/27] autofs-5.1.3 - fix ordering of seteuid/setegid in do_spawn() Ian Kent
2017-12-11  8:57 ` [PATCH 04/27] autofs-5.1.3 - Fix two typos Ian Kent
2017-12-11  8:58 ` [PATCH 05/27] autofs-5.1.3 - update configure to check for pipe2(2) Ian Kent
2017-12-11  8:58 ` [PATCH 06/27] autofs-5.1.3 - fix open calls not using open_xxxx() calls Ian Kent
2017-12-11  8:58 ` [PATCH 07/27] autofs-5.1.3 - move open_xxxx() functions to spawn.c Ian Kent
2017-12-11  8:58 ` [PATCH 08/27] autofs-5.1.3 - serialize calls to open_xxxx() functions Ian Kent
2017-12-11  8:58 ` [PATCH 09/27] autofs-5.1.3 - improve debug logging of lookup key Ian Kent
2017-12-11  8:58 ` [PATCH 10/27] autofs-5.1.3 - fix typo in amd_parse.c Ian Kent
2017-12-11  8:58 ` [PATCH 11/27] autofs-5.1.3 - add missing MODPREFIX to logging in amd parser Ian Kent
2017-12-11  8:58 ` [PATCH 12/27] autofs-5.1.3 - fix symlink false negative in umount_multi() Ian Kent
2017-12-11  8:58 ` [PATCH 13/27] autofs-5.1.3 - remove expand_selectors() call on amd parser entry Ian Kent
2017-12-11  8:59 ` [PATCH 14/27] autofs-5.1.3 - fix amd defaults map entry handling Ian Kent
2017-12-11  8:59 ` [PATCH 15/27] autofs-5.1.3 - refactor amd_parse.c Ian Kent
2017-12-11  8:59 ` [PATCH 16/27] autofs-5.1.3 - fix amd parser double quote handling Ian Kent
2017-12-11  8:59 ` [PATCH 17/27] autofs-5.1.3 - fix expandamdent() " Ian Kent
2017-12-11  8:59 ` [PATCH 18/27] autofs-5.1.3 - fix possible memory leak during amd parse Ian Kent
2017-12-11  8:59 ` [PATCH 19/27] autofs-5.1.3 - remove path restriction of amd external mount Ian Kent
2017-12-11  8:59 ` [PATCH 20/27] autofs-5.1.3 - add function umount_amd_ext_mount() Ian Kent
2017-12-11  8:59 ` [PATCH 21/27] autofs-5.1.3 - add function ext_mount_inuse() Ian Kent
2017-12-11  8:59 ` [PATCH 22/27] autofs-5.1.3 - add function construct_argv() Ian Kent
2017-12-11  8:59 ` [PATCH 23/27] autofs-5.1.3 - add amd mount type program mount support Ian Kent
2017-12-11  9:00 ` [PATCH 24/27] autofs-5.1.3 - fix memory leak in umount_amd_ext_mount() Ian Kent
2017-12-11  9:00 ` [PATCH 25/27] autofs-5.1.3 - fix strerror_r() parameter declaration in do program_mount() Ian Kent
2017-12-11  9:00 ` [PATCH 26/27] autofs-5.1.3 - fix incorrect check in validate_program_options() Ian Kent
2017-12-11  9:00 ` Ian Kent [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=151298283271.19722.1032845511702316903.stgit@pluto.themaw.net \
    --to=raven@themaw.net \
    --cc=autofs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).