42 lines
948 B
Diff
42 lines
948 B
Diff
|
autofs-5.1.4 - update build info with systemd
|
||
|
|
||
|
From: Ian Kent <raven@themaw.net>
|
||
|
|
||
|
Update the show_build_info() function to include systemd
|
||
|
build info.
|
||
|
|
||
|
Signed-off-by: Ian Kent <raven@themaw.net>
|
||
|
---
|
||
|
CHANGELOG | 1 +
|
||
|
daemon/automount.c | 9 +++++++++
|
||
|
2 files changed, 10 insertions(+)
|
||
|
|
||
|
--- autofs-5.1.4.orig/CHANGELOG
|
||
|
+++ autofs-5.1.4/CHANGELOG
|
||
|
@@ -40,6 +40,7 @@ xx/xx/2018 autofs-5.1.5
|
||
|
- fix hesiod string check in master_parse().
|
||
|
- remove autofs4 module load code.
|
||
|
- add NULL check in prepare_attempt_prefix().
|
||
|
+- update build info with systemd.
|
||
|
|
||
|
19/12/2017 autofs-5.1.4
|
||
|
- fix spec file url.
|
||
|
--- autofs-5.1.4.orig/daemon/automount.c
|
||
|
+++ autofs-5.1.4/daemon/automount.c
|
||
|
@@ -1951,6 +1951,15 @@ static void show_build_info(void)
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
+#ifdef WITH_SYSTEMD
|
||
|
+ printf("WITH_SYSTEMD ");
|
||
|
+ count = count + 13;
|
||
|
+
|
||
|
+ if (count > 60) {
|
||
|
+ printf("\n ");
|
||
|
+ count = 0;
|
||
|
+ }
|
||
|
+#endif
|
||
|
|
||
|
#ifdef WITH_HESIOD
|
||
|
printf("WITH_HESIOD ");
|