Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/openrc:master commit in: src/rc/
Date: Mon, 26 Feb 2018 20:34:25
Message-Id: 1519674407.0506d68427e342366d826aae4bfbbc6cc0adecc2.williamh@OpenRC
1 commit: 0506d68427e342366d826aae4bfbbc6cc0adecc2
2 Author: William Hubbs <w.d.hubbs <AT> gmail <DOT> com>
3 AuthorDate: Mon Feb 26 19:46:47 2018 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 26 19:46:47 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/openrc.git/commit/?id=0506d684
7
8 fstabinfo: fix an error message
9
10 src/rc/fstabinfo.c | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/src/rc/fstabinfo.c b/src/rc/fstabinfo.c
14 index a2e707aa..a35a52f6 100644
15 --- a/src/rc/fstabinfo.c
16 +++ b/src/rc/fstabinfo.c
17 @@ -141,7 +141,7 @@ do_mount(struct ENT *ent, bool remount)
18 /* NOTREACHED */
19 case 0:
20 execvp(argv[0], argv);
21 - eerror("%s: execv: %s", applet, strerror(errno));
22 + eerror("%s: execvp: %s", applet, strerror(errno));
23 _exit(EXIT_FAILURE);
24 /* NOTREACHED */
25 default: