From: Christian Hesse Date: Thu, 2 Jun 2022 18:49:46 +0000 (+0200) Subject: shared/utmp-wtmp: fix build without utmp X-Git-Tag: v252-rc1~876 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d6e2c2d34d336398f5948a8b731fefff3dc0ff12;p=thirdparty%2Fsystemd.git shared/utmp-wtmp: fix build without utmp Commit 16618332388442f2f1c3e52b0a9fde00121564a3 changed a function to add an extra argument. The data types used when building without utmp missed the change. --- diff --git a/src/shared/utmp-wtmp.h b/src/shared/utmp-wtmp.h index 36e4203b4f7..188d011fdd7 100644 --- a/src/shared/utmp-wtmp.h +++ b/src/shared/utmp-wtmp.h @@ -59,7 +59,7 @@ static inline int utmp_wall( const char *message, const char *username, const char *origin_tty, - bool (*match_tty)(const char *tty, void *userdata), + bool (*match_tty)(const char *tty, bool is_local, void *userdata), void *userdata) { return 0; }