comment spelling fixes from univention

This commit is contained in:
Jay Sorg 2014-02-04 11:02:59 -08:00
parent db39d10595
commit 7b7debd56a
2 changed files with 7 additions and 7 deletions

View File

@ -238,7 +238,7 @@ xrdp_mm_send_login(struct xrdp_mm *self)
/*****************************************************************************/ /*****************************************************************************/
/* returns error */ /* returns error */
/* this goes through the login_names looking for one called 'aname' /* this goes through the login_names looking for one called 'aname'
then it copies the corisponding login_values item into 'dest' then it copies the corresponding login_values item into 'dest'
'dest' must be at least 'dest_len' + 1 bytes in size */ 'dest' must be at least 'dest_len' + 1 bytes in size */
static int APP_CC static int APP_CC
xrdp_mm_get_value(struct xrdp_mm *self, char *aname, char *dest, int dest_len) xrdp_mm_get_value(struct xrdp_mm *self, char *aname, char *dest, int dest_len)
@ -1511,7 +1511,7 @@ getPAMError(const int pamError, char *text, int text_bytes)
case PAM_USER_UNKNOWN: case PAM_USER_UNKNOWN:
return "User not known to the underlying authentication module"; return "User not known to the underlying authentication module";
case PAM_MAXTRIES: case PAM_MAXTRIES:
return "Have exhasted maximum number of retries for service."; return "Have exhausted maximum number of retries for service.";
case PAM_NEW_AUTHTOK_REQD: case PAM_NEW_AUTHTOK_REQD:
return "Authentication token is no longer valid; new one required."; return "Authentication token is no longer valid; new one required.";
case PAM_ACCT_EXPIRED: case PAM_ACCT_EXPIRED:

View File

@ -575,7 +575,7 @@ xrdp_wm_init(struct xrdp_wm *self)
{ {
if (autorun_name[0] == 0) if (autorun_name[0] == 0)
{ {
/* if no doamin is passed, and no autorun in xrdp.ini, /* if no domain is passed, and no autorun in xrdp.ini,
use the first item in the xrdp.ini use the first item in the xrdp.ini
file thats not named file thats not named
'globals' or 'Logging' or 'channels' */ 'globals' or 'Logging' or 'channels' */
@ -1042,7 +1042,7 @@ xrdp_wm_mouse_move(struct xrdp_wm *self, int x, int y)
b = xrdp_wm_at_pos(self->screen, x, y, 0); b = xrdp_wm_at_pos(self->screen, x, y, 0);
if (b == 0) /* if b is null, the movment must be over the screen */ if (b == 0) /* if b is null, the movement must be over the screen */
{ {
if (self->screen->pointer != self->current_pointer) if (self->screen->pointer != self->current_pointer)
{ {
@ -1050,7 +1050,7 @@ xrdp_wm_mouse_move(struct xrdp_wm *self, int x, int y)
self->current_pointer = self->screen->pointer; self->current_pointer = self->screen->pointer;
} }
if (self->mm->mod != 0) /* if screen is mod controled */ if (self->mm->mod != 0) /* if screen is mod controlled */
{ {
if (self->mm->mod->mod_event != 0) if (self->mm->mod->mod_event != 0)
{ {
@ -1189,7 +1189,7 @@ xrdp_wm_mouse_click(struct xrdp_wm *self, int x, int y, int but, int down)
if (control == 0) if (control == 0)
{ {
if (self->mm->mod != 0) /* if screen is mod controled */ if (self->mm->mod != 0) /* if screen is mod controlled */
{ {
if (self->mm->mod->mod_event != 0) if (self->mm->mod->mod_event != 0)
{ {
@ -1738,7 +1738,7 @@ xrdp_wm_login_mode_changed(struct xrdp_wm *self)
} }
/*****************************************************************************/ /*****************************************************************************/
/* this is the log windows nofity function */ /* this is the log windows notify function */
static int DEFAULT_CC static int DEFAULT_CC
xrdp_wm_log_wnd_notify(struct xrdp_bitmap *wnd, xrdp_wm_log_wnd_notify(struct xrdp_bitmap *wnd,
struct xrdp_bitmap *sender, struct xrdp_bitmap *sender,