diff options
author | Ted Gould <ted@gould.cx> | 2010-03-02 16:13:22 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-03-02 16:13:22 -0600 |
commit | d723e8d4ed1e96c889d139a0f8c4cca117137c4a (patch) | |
tree | a5da8045991c065b22713629e6dff09469ee719c /src/session-service.c | |
parent | ad9dd9ec9a32d9380c12bce08d939d0f58d56555 (diff) | |
download | ayatana-indicator-session-d723e8d4ed1e96c889d139a0f8c4cca117137c4a.tar.gz ayatana-indicator-session-d723e8d4ed1e96c889d139a0f8c4cca117137c4a.tar.bz2 ayatana-indicator-session-d723e8d4ed1e96c889d139a0f8c4cca117137c4a.zip |
Creating a field for the user that has the real name in it, and a place for that to conflict.
Diffstat (limited to 'src/session-service.c')
-rw-r--r-- | src/session-service.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/session-service.c b/src/session-service.c index 5746f7d..21c5b8b 100644 --- a/src/session-service.c +++ b/src/session-service.c @@ -406,7 +406,15 @@ compare_users_by_username (const gchar *a, UserData *user1 = (UserData *)a; UserData *user2 = (UserData *)b; - return g_strcmp0 (user1->real_name, user2->real_name); + gint retval = g_strcmp0 (user1->real_name, user2->real_name); + + /* If they're the same, they're both in conflict. */ + if (retval == 0) { + user1->real_name_conflict = TRUE; + user2->real_name_conflict = TRUE; + } + + return retval; } /* Builds up the menu for us */ |