summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Szyndela <adrian.s@samsung.com>2019-12-20 13:24:40 +0100
committerAdrian Szyndela <adrian.s@samsung.com>2019-12-20 13:28:27 +0100
commit2c3f134180192ae9783087826a74a8b05dbf6900 (patch)
tree45618e85d08ad9e3476fb5f59e43848607452db9
parentf1cceeb347ac9fea987918be9a60b14bfb65108d (diff)
downloadsystemd-tizen_3.0.tar.gz
systemd-tizen_3.0.tar.bz2
systemd-tizen_3.0.zip
edd611d84bb7f247d4cd2c52b5bf49df969a1c02 introduced a build error, as the backported patch used newer, 3-argument version of automount_send_ready, while tizen_3.0 uses older, 2-argument version of automount_send_ready. This fixes the build error. Change-Id: I6072a940054124451039342f8ca677e37771e9f2
-rw-r--r--src/core/automount.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/automount.c b/src/core/automount.c
index b4bcce0820..1732a276ce 100644
--- a/src/core/automount.c
+++ b/src/core/automount.c
@@ -567,7 +567,7 @@ static void automount_enter_running(Automount *a) {
if (!S_ISDIR(st.st_mode) || st.st_dev != a->dev_id) {
log_unit_info(UNIT(a)->id,
"%s's automount point already active?", UNIT(a)->id);
- automount_send_ready(a, a->tokens, 0);
+ automount_send_ready(a, 0);
return;
}