[systemd-commits] src/login

David Herrmann dvdhrm at kemper.freedesktop.org
Wed Apr 23 08:40:02 PDT 2014


 src/login/logind-session.c |    4 ++--
 src/login/logind-session.h |    2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 8b8fa8b80c6b306b9ca249fa3ef64e83f49efa35
Author: David Herrmann <dh.herrmann at gmail.com>
Date:   Wed Apr 23 17:38:43 2014 +0200

    login: rename session_mute_vt() to session_prepare_vt()
    
    This function is no longer just about muteing the VT. We do all kinds of
    VT setup for sessions using the controller-API. Rename the function to
    something more appropriate.

diff --git a/src/login/logind-session.c b/src/login/logind-session.c
index 83c0ffa..8e6f95e 100644
--- a/src/login/logind-session.c
+++ b/src/login/logind-session.c
@@ -963,7 +963,7 @@ static int session_vt_fn(sd_event_source *source, const struct signalfd_siginfo
         return 0;
 }
 
-void session_mute_vt(Session *s) {
+void session_prepare_vt(Session *s) {
         int vt, r;
         struct vt_mode mode = { 0 };
         sigset_t mask;
@@ -1095,7 +1095,7 @@ int session_set_controller(Session *s, const char *sender, bool force) {
          * exits.
          * If logind crashes/restarts, we restore the controller during restart
          * or reset the VT in case it crashed/exited, too. */
-        session_mute_vt(s);
+        session_prepare_vt(s);
 
         return 0;
 }
diff --git a/src/login/logind-session.h b/src/login/logind-session.h
index 7ecc9f0..f78f309 100644
--- a/src/login/logind-session.h
+++ b/src/login/logind-session.h
@@ -170,7 +170,7 @@ SessionClass session_class_from_string(const char *s) _pure_;
 const char *kill_who_to_string(KillWho k) _const_;
 KillWho kill_who_from_string(const char *s) _pure_;
 
-void session_mute_vt(Session *s);
+void session_prepare_vt(Session *s);
 void session_restore_vt(Session *s);
 
 bool session_is_controller(Session *s, const char *sender);



More information about the systemd-commits mailing list