diff options
author | Pavel Roskin <plroskin@gmail.com> | 2016-11-20 09:55:32 -0800 |
---|---|---|
committer | Jay Sorg <jay.sorg@gmail.com> | 2017-01-11 11:59:11 -0800 |
commit | b8ed23daab023e1468b7ae98ffa7bd06176b1404 (patch) | |
tree | 7b1c928a28bbfd0cc7636ac364d8ffbe3882d85c /neutrinordp/xrdp-neutrinordp.h | |
parent | a959a9f85171af2915b2909fe070b2029e8da6fe (diff) | |
download | xrdp-proprietary-b8ed23daab023e1468b7ae98ffa7bd06176b1404.tar.gz xrdp-proprietary-b8ed23daab023e1468b7ae98ffa7bd06176b1404.zip |
Constify the value argument to mod_set_param
Diffstat (limited to 'neutrinordp/xrdp-neutrinordp.h')
-rw-r--r-- | neutrinordp/xrdp-neutrinordp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/neutrinordp/xrdp-neutrinordp.h b/neutrinordp/xrdp-neutrinordp.h index 79bb460d..fd4560d0 100644 --- a/neutrinordp/xrdp-neutrinordp.h +++ b/neutrinordp/xrdp-neutrinordp.h @@ -71,7 +71,7 @@ struct mod long param3, long param4); int (*mod_signal)(struct mod *v); int (*mod_end)(struct mod *v); - int (*mod_set_param)(struct mod *v, const char *name, char *value); + int (*mod_set_param)(struct mod *v, const char *name, const char *value); int (*mod_session_change)(struct mod *v, int, int); int (*mod_get_wait_objs)(struct mod *v, tbus *read_objs, int *rcount, tbus *write_objs, int *wcount, int *timeout); |