diff options
author | Pavel Roskin <plroskin@gmail.com> | 2017-03-12 09:35:00 -0700 |
---|---|---|
committer | jsorg71 <jay.sorg@gmail.com> | 2017-03-14 00:21:48 -0700 |
commit | 6ed4c969f4d646a7751fe2da29ba94eddd3d6477 (patch) | |
tree | 951c72b16a0be1a1cc8c77e6d2ecaa1f25f2bcd6 /sesman/env.c | |
parent | 8be83473b72c926d3c056fd8a81965dbce0a0e5e (diff) | |
download | xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.tar.gz xrdp-proprietary-6ed4c969f4d646a7751fe2da29ba94eddd3d6477.zip |
Eliminate APP_CC and DEFAULT_CC
Diffstat (limited to 'sesman/env.c')
-rw-r--r-- | sesman/env.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sesman/env.c b/sesman/env.c index 2a07b873..eabc92c4 100644 --- a/sesman/env.c +++ b/sesman/env.c @@ -38,7 +38,7 @@ extern unsigned char g_fixedkey[8]; /* in sesman.c */ extern struct config_sesman *g_cfg; /* in sesman.c */ /******************************************************************************/ -int DEFAULT_CC +int env_check_password_file(const char *filename, const char *passwd) { char encryptedPasswd[16]; @@ -87,7 +87,7 @@ env_check_password_file(const char *filename, const char *passwd) /******************************************************************************/ /* its the responsibility of the caller to free passwd_file */ -int DEFAULT_CC +int env_set_user(const char *username, char **passwd_file, int display, const struct list *env_names, const struct list *env_values) { |