diff options
author | Jay Sorg <jay.sorg@gmail.com> | 2016-03-16 14:40:24 -0700 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2016-03-16 14:40:24 -0700 |
commit | a6cba63a89de45807f835a8521ef12701857ddaa (patch) | |
tree | 040778118ae370d95c5fe8b4713d3a6dcc770177 /sesman/libscp | |
parent | 689ffe79d9c79edfce9e5da94d0c4723937df4e9 (diff) | |
download | xrdp-proprietary-a6cba63a89de45807f835a8521ef12701857ddaa.tar.gz xrdp-proprietary-a6cba63a89de45807f835a8521ef12701857ddaa.zip |
fix a warning
Diffstat (limited to 'sesman/libscp')
-rw-r--r-- | sesman/libscp/libscp_v1s.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sesman/libscp/libscp_v1s.c b/sesman/libscp/libscp_v1s.c index 6d69d187..b7d422c7 100644 --- a/sesman/libscp/libscp_v1s.c +++ b/sesman/libscp/libscp_v1s.c @@ -647,7 +647,7 @@ scp_v1s_list_sessions(struct SCP_CONNECTION *c, int sescnt, struct SCP_DISCONNEC /* if we got here, the requested sid wasn't one from the list we sent */ /* we should kill the connection */ log_message(LOG_LEVEL_WARNING, "[v1s:%d] connection aborted: internal error (no such session in list)", __LINE__); - return SCP_CLIENT_STATE_INTERNAL_ERR; + return SCP_SERVER_STATE_INTERNAL_ERR; } else if (cmd == 44) { |