diff options
| author | jsorg71 <jsorg71> | 2010-08-09 23:02:06 +0000 |
|---|---|---|
| committer | jsorg71 <jsorg71> | 2010-08-09 23:02:06 +0000 |
| commit | d83ebaa97af49224f680e7a793ae53777ec20f92 (patch) | |
| tree | 49feaf19a885026cb0c8c562f493a2cce7c74c85 /sesman/libscp/libscp_v1c_mng.c | |
| parent | 0156c1448df053d4bd144f19aba4353ddebe1978 (diff) | |
| download | xrdp-proprietary-d83ebaa97af49224f680e7a793ae53777ec20f92.tar.gz xrdp-proprietary-d83ebaa97af49224f680e7a793ae53777ec20f92.zip | |
use do ... while (0) style for parse.h
Diffstat (limited to 'sesman/libscp/libscp_v1c_mng.c')
| -rw-r--r-- | sesman/libscp/libscp_v1c_mng.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sesman/libscp/libscp_v1c_mng.c b/sesman/libscp/libscp_v1c_mng.c index e8104021..bb54bc79 100644 --- a/sesman/libscp/libscp_v1c_mng.c +++ b/sesman/libscp/libscp_v1c_mng.c @@ -378,7 +378,7 @@ _scp_v1c_mng_check_response(struct SCP_CONNECTION* c, struct SCP_SESSION* s) return SCP_CLIENT_STATE_SEQUENCE_ERR; } - in_uint16_be(c->in_s, cmd) + in_uint16_be(c->in_s, cmd); if (cmd == SCP_CMD_MNG_LOGIN_ALLOW) /* connection ok */ { log_message(s_log, LOG_LEVEL_INFO, "[v1c_mng:%d] connection ok", __LINE__); |
