summaryrefslogtreecommitdiffstats
path: root/sesman/session.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2007-02-01 06:43:06 +0000
committerjsorg71 <jsorg71>2007-02-01 06:43:06 +0000
commit96fd0b8a000f3d1c871bf0276c1ec39fd0885a37 (patch)
treee7cd79a4a121d9d12e746ce2ab4ec54f2b461b06 /sesman/session.c
parent2183c539cc882aea3ab8426bf52920a5afa4a78e (diff)
downloadxrdp-proprietary-96fd0b8a000f3d1c871bf0276c1ec39fd0885a37.tar.gz
xrdp-proprietary-96fd0b8a000f3d1c871bf0276c1ec39fd0885a37.zip
indent
Diffstat (limited to 'sesman/session.c')
-rw-r--r--sesman/session.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/sesman/session.c b/sesman/session.c
index c1a2c525..0739ca21 100644
--- a/sesman/session.c
+++ b/sesman/session.c
@@ -42,7 +42,7 @@ session_get_bydata(char* name, int width, int height, int bpp)
/*THREAD-FIX require chain lock */
lock_chain_acquire();
- tmp=g_sessions;
+ tmp = g_sessions;
while (tmp != 0)
{
@@ -55,9 +55,9 @@ session_get_bydata(char* name, int width, int height, int bpp)
lock_chain_release();
return tmp->item;
}
- tmp=tmp->next;
+ tmp = tmp->next;
}
-
+
/*THREAD-FIX release chain lock */
lock_chain_release();
return 0;
@@ -161,6 +161,7 @@ for user %s denied", username);
g_get_current_dir(cur_dir, 255);
display = 10;
+
/*while (x_server_running(display) && display < 50)*/
/* we search for a free display up to max_sessions */
/* we should need no more displays than this */
@@ -170,7 +171,7 @@ for user %s denied", username);
while (x_server_running(display))
{
display++;
- if ((display - 10) > g_cfg.sess.max_sessions || display >= 50)
+ if (((display - 10) > g_cfg.sess.max_sessions) || (display >= 50))
{
return 0;
}