summaryrefslogtreecommitdiffstats
path: root/xrdp/xrdp_login_wnd.c
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-11-26 01:38:08 +0000
committerjsorg71 <jsorg71>2005-11-26 01:38:08 +0000
commit754efcabb167f162133ac0963dd0552f09c32bf1 (patch)
tree9645d9d7d45096cd3824663633156d67a6e35fb9 /xrdp/xrdp_login_wnd.c
parentc22e66e9aec8e9147d3e56d9350a58fea0a40c75 (diff)
downloadxrdp-proprietary-754efcabb167f162133ac0963dd0552f09c32bf1.tar.gz
xrdp-proprietary-754efcabb167f162133ac0963dd0552f09c32bf1.zip
<lf><cr> should be <cr><lf>
Diffstat (limited to 'xrdp/xrdp_login_wnd.c')
-rw-r--r--xrdp/xrdp_login_wnd.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xrdp/xrdp_login_wnd.c b/xrdp/xrdp_login_wnd.c
index 3a345edb..18e6eec1 100644
--- a/xrdp/xrdp_login_wnd.c
+++ b/xrdp/xrdp_login_wnd.c
@@ -128,7 +128,7 @@ xrdp_wm_setup_mod1(struct xrdp_wm* self,
}
if (func == 0)
{
- g_printf("error finding proc mod_init in %s\n\r", mod_data->lib);
+ g_printf("error finding proc mod_init in %s\r\n", mod_data->lib);
}
self->mod_init = (struct xrdp_mod* (*)(void))func;
func = g_get_proc_address(self->mod_handle, "mod_exit");
@@ -138,7 +138,7 @@ xrdp_wm_setup_mod1(struct xrdp_wm* self,
}
if (func == 0)
{
- g_printf("error finding proc mod_exit in %s\n\r", mod_data->lib);
+ g_printf("error finding proc mod_exit in %s\r\n", mod_data->lib);
}
self->mod_exit = (int (*)(struct xrdp_mod*))func;
if (self->mod_init != 0 && self->mod_exit != 0)
@@ -148,7 +148,7 @@ xrdp_wm_setup_mod1(struct xrdp_wm* self,
}
else
{
- g_printf("error loading %s\n\r", mod_data->lib);
+ g_printf("error loading %s\r\n", mod_data->lib);
}
if (self->mod != 0)
{
@@ -179,7 +179,7 @@ xrdp_wm_setup_mod1(struct xrdp_wm* self,
/* id self->mod is null, there must be a problem */
if (self->mod == 0)
{
- DEBUG(("problem loading lib in xrdp_wm_setup_mod1\n\r"));
+ DEBUG(("problem loading lib in xrdp_wm_setup_mod1\r\n"));
return 1;
}
return 0;