summaryrefslogtreecommitdiffstats
path: root/sesman/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'sesman/session.c')
-rw-r--r--sesman/session.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sesman/session.c b/sesman/session.c
index 67c5fc6f..3860c199 100644
--- a/sesman/session.c
+++ b/sesman/session.c
@@ -348,7 +348,7 @@ session_is_display_in_chain(int display)
/******************************************************************************/
/* called with the main thread */
static int APP_CC
-session_get_aval_display_from_chain(void)
+session_get_avail_display_from_chain(void)
{
int display;
@@ -461,7 +461,7 @@ session_start_fork(int width, int height, int bpp, char *username,
return 0;
}
- display = session_get_aval_display_from_chain();
+ display = session_get_avail_display_from_chain();
if (display == 0)
{
@@ -470,7 +470,7 @@ session_start_fork(int width, int height, int bpp, char *username,
return 0;
}
- pid = g_fork(); /* parent is fork from tcp accpet,
+ pid = g_fork(); /* parent is fork from tcp accept,
child forks X and wm, then becomes scp */
if (pid == -1)