diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2012-06-03 15:53:46 -0500 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2012-06-03 15:53:46 -0500 |
commit | 45af879206b20e704c985a33f93e88f329842352 (patch) | |
tree | 30649ad9a0aa6fbd87619bb014828f1190ba3ff4 | |
parent | 266693a41107c25fb87f099eb3b96d3eb8d73747 (diff) | |
download | ayatana-indicator-session-45af879206b20e704c985a33f93e88f329842352.tar.gz ayatana-indicator-session-45af879206b20e704c985a33f93e88f329842352.tar.bz2 ayatana-indicator-session-45af879206b20e704c985a33f93e88f329842352.zip |
simplify is_this_guest_session()
-rw-r--r-- | src/user-menu-mgr.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/user-menu-mgr.c b/src/user-menu-mgr.c index 0070188..1f3755b 100644 --- a/src/user-menu-mgr.c +++ b/src/user-menu-mgr.c @@ -364,17 +364,13 @@ user_mgr_get_root_item (UserMenuMgr* self) return self->root_item; } -/* Checks to see if we should show the guest suession item */ +/* Checks to see if we should show the guest session item. + System users shouldn't have guest account shown. + Mostly this would be the case of the guest user itself. */ static gboolean is_this_guest_session (void) { - if (geteuid() < 500) { - /* System users shouldn't have guest account shown. Mostly - this would be the case of the guest user itself. */ - return TRUE; - } - - return FALSE; + return geteuid() < 500; } /* Called when someone clicks on the guest session item. */ |