41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
autofs-5.1.7 - fix incorrect print format specifiers in get_pkt()
|
|
|
|
From: Ian Kent <raven@themaw.net>
|
|
|
|
Signed-off-by: Ian Kent <raven@themaw.net>
|
|
---
|
|
CHANGELOG | 1 +
|
|
daemon/automount.c | 4 ++--
|
|
2 files changed, 3 insertions(+), 2 deletions(-)
|
|
|
|
--- autofs-5.1.7.orig/CHANGELOG
|
|
+++ autofs-5.1.7/CHANGELOG
|
|
@@ -122,6 +122,7 @@
|
|
- make amd mapent search function name clear.
|
|
- rename statemachine() to signal_handler().
|
|
- make signal handling consistent.
|
|
+- fix incorrect print format specifiers in get_pkt().
|
|
|
|
25/01/2021 autofs-5.1.7
|
|
- make bind mounts propagation slave by default.
|
|
--- autofs-5.1.7.orig/daemon/automount.c
|
|
+++ autofs-5.1.7/daemon/automount.c
|
|
@@ -1105,7 +1105,7 @@ static int get_pkt(struct autofs_point *
|
|
estr = strerror_r(errno, buf, MAX_ERR_BUF);
|
|
error(ap->logopt,
|
|
"read error on state pipe, "
|
|
- "read %u, error %s",
|
|
+ "read %lu, error %s",
|
|
read, estr);
|
|
st_mutex_unlock();
|
|
continue;
|
|
@@ -1123,7 +1123,7 @@ static int get_pkt(struct autofs_point *
|
|
estr = strerror_r(errno, buf, MAX_ERR_BUF);
|
|
error(ap->logopt,
|
|
"read error on request pipe, "
|
|
- "read %u, expected %u error %s",
|
|
+ "read %lu, expected %lu error %s",
|
|
read, kpkt_len, estr);
|
|
}
|
|
return read;
|