From 08520fc44a43baf31e96d130876efd79304f7d1b Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Sat, 24 Sep 2011 15:49:20 +0200 Subject: Print session id in list_users --- src/commands.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands.c b/src/commands.c index 32746f6..4683068 100644 --- a/src/commands.c +++ b/src/commands.c @@ -16,7 +16,7 @@ list_users(struct cmumble_context *ctx) for (l = ctx->users; l; l = l->next) { user = l->data; - g_print("%4d: %s\n", user->id, user->name); + g_print("%4d: %s\n", user->session, user->name); } } -- cgit