diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2015-12-11 20:41:17 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2015-12-11 20:41:17 -0800 |
commit | 4e0d0f3ba06028c27f80b47dacbd8a7d323e7a93 (patch) | |
tree | 4fc02867a31074a1ab57ce8b8587af05a425b8e3 /sesman/scp_v0.c | |
parent | 4f128c530c6b7bfd014f23878f83bcd2369f793f (diff) | |
download | xrdp-proprietary-4e0d0f3ba06028c27f80b47dacbd8a7d323e7a93.tar.gz xrdp-proprietary-4e0d0f3ba06028c27f80b47dacbd8a7d323e7a93.zip |
sesman: remove the thread
Diffstat (limited to 'sesman/scp_v0.c')
-rw-r--r-- | sesman/scp_v0.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/scp_v0.c b/sesman/scp_v0.c index 7ffdb1e2..efa9080c 100644 --- a/sesman/scp_v0.c +++ b/sesman/scp_v0.c @@ -35,9 +35,9 @@ scp_v0_process(struct SCP_CONNECTION *c, struct SCP_SESSION *s) int display = 0; tbus data; struct session_item *s_item; - int errorcode = 0 ; + int errorcode = 0; - data = auth_userpass(s->username, s->password,&errorcode); + data = auth_userpass(s->username, s->password, &errorcode); if (s->type == SCP_GW_AUTHENTICATION) { |