blob: 2bb9565bf2d9e6ab3d575d4c6501480822227326 [file] [log] [blame]
Andrew Geissler78b72792022-06-14 06:47:25 -05001From d6e2c2d34d336398f5948a8b731fefff3dc0ff12 Mon Sep 17 00:00:00 2001
2From: Christian Hesse <mail@eworm.de>
3Date: Thu, 2 Jun 2022 20:49:46 +0200
4Subject: [PATCH] shared/utmp-wtmp: fix build without utmp
5
6Commit 16618332388442f2f1c3e52b0a9fde00121564a3 changed a function to
7add an extra argument. The data types used when building without utmp
8missed the change.
9
10Upstream-Status: Backport [d6e2c2d34d336398f5948a8b731fefff3dc0ff12]
11Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
12
13---
14 src/shared/utmp-wtmp.h | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17diff --git a/src/shared/utmp-wtmp.h b/src/shared/utmp-wtmp.h
18index 36e4203b4f..188d011fdd 100644
19--- a/src/shared/utmp-wtmp.h
20+++ b/src/shared/utmp-wtmp.h
21@@ -59,7 +59,7 @@ static inline int utmp_wall(
22 const char *message,
23 const char *username,
24 const char *origin_tty,
25- bool (*match_tty)(const char *tty, void *userdata),
26+ bool (*match_tty)(const char *tty, bool is_local, void *userdata),
27 void *userdata) {
28 return 0;
29 }
30--
312.36.1
32