diff options
| author | ilsimo <ilsimo> | 2008-02-21 15:50:31 +0000 |
|---|---|---|
| committer | ilsimo <ilsimo> | 2008-02-21 15:50:31 +0000 |
| commit | 57484bd7016c6e56854dc4c34ac0dc8077a07014 (patch) | |
| tree | dc081809815ab499c9b8827fc92e7c2b7b03df09 /sesman/libscp/libscp_session.c | |
| parent | 4c9d3862e55ab5d6fa734549478bb0a00be9f7ed (diff) | |
| download | xrdp-proprietary-57484bd7016c6e56854dc4c34ac0dc8077a07014.tar.gz xrdp-proprietary-57484bd7016c6e56854dc4c34ac0dc8077a07014.zip | |
more work on logging
Diffstat (limited to 'sesman/libscp/libscp_session.c')
| -rw-r--r-- | sesman/libscp/libscp_session.c | 50 |
1 files changed, 39 insertions, 11 deletions
diff --git a/sesman/libscp/libscp_session.c b/sesman/libscp/libscp_session.c index dac31877..916424d9 100644 --- a/sesman/libscp/libscp_session.c +++ b/sesman/libscp/libscp_session.c @@ -43,7 +43,7 @@ scp_session_create() s->password=0; s->hostname=0; s->errstr=0; -#warning usare scp_session_set* per inizializzare la sessione!!!!!! +#warning FIXME use scp_session_set* to init session return s; } @@ -135,7 +135,10 @@ scp_session_set_rsr(struct SCP_SESSION* s, tui8 rsr) int scp_session_set_locale(struct SCP_SESSION* s, char* str) { - if (0 == str) return 1; + if (0 == str) + { + return 1; + } g_strncpy(s->locale, str, 17); s->locale[17]='\0'; return 0; @@ -145,8 +148,14 @@ scp_session_set_locale(struct SCP_SESSION* s, char* str) int scp_session_set_username(struct SCP_SESSION* s, char* str) { - if (0 == str) return 1; - if (0 != s->username) g_free(s->username); + if (0 == str) + { + return 1; + } + if (0 != s->username) + { + g_free(s->username); + } s->username = g_strdup(str); return 0; } @@ -155,8 +164,14 @@ scp_session_set_username(struct SCP_SESSION* s, char* str) int scp_session_set_password(struct SCP_SESSION* s, char* str) { - if (0 == str) return 1; - if (0 != s->password) g_free(s->password); + if (0 == str) + { + return 1; + } + if (0 != s->password) + { + g_free(s->password); + } s->password = g_strdup(str); return 0; } @@ -165,8 +180,14 @@ scp_session_set_password(struct SCP_SESSION* s, char* str) int scp_session_set_hostname(struct SCP_SESSION* s, char* str) { - if (0 == str) return 1; - if (0 != s->hostname) g_free(s->hostname); + if (0 == str) + { + return 1; + } + if (0 != s->hostname) + { + g_free(s->hostname); + } s->hostname = g_strdup(str); return 0; } @@ -175,8 +196,14 @@ scp_session_set_hostname(struct SCP_SESSION* s, char* str) int scp_session_set_errstr(struct SCP_SESSION* s, char* str) { - if (0 == str) return 1; - if (0 != s->errstr) g_free(s->errstr); + if (0 == str) + { + return 1; + } + if (0 != s->errstr) + { + g_free(s->errstr); + } s->errstr = g_strdup(str); return 0; } @@ -193,7 +220,8 @@ scp_session_set_display(struct SCP_SESSION* s, SCP_DISPLAY display) int scp_session_set_addr(struct SCP_SESSION* s, int type, char* addr) { - +#warning FIXME managing addresses + return 1; } /*******************************************************************/ |
