From 47acb2f15f2319ec0fc341a4271d45067da2ed24 Mon Sep 17 00:00:00 2001 From: Colin Guthrie Date: Mon, 3 Sep 2012 23:47:02 +0100 Subject: [PATCH] logind: Properly list the ACTIVE_SEATS in the user session tracking file. Prevsiouly the first active seat for a user would never be listed and any subsequent seats would be concatenated on without any spaces. --- src/login/logind-user.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/login/logind-user.c b/src/login/logind-user.c index a33978c18..a6672ce67 100644 --- a/src/login/logind-user.c +++ b/src/login/logind-user.c @@ -189,7 +189,9 @@ int user_save(User *u) { if (first) first = false; else - fputs(i->seat->id, f); + fputc(' ', f); + + fputs(i->seat->id, f); } fputc('\n', f); } -- 2.30.2