diff options
author | Phil Pennock <pdp@exim.org> | 2015-10-17 16:02:41 -0400 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2015-10-17 16:02:41 -0400 |
commit | 9f4b26f99f75aa40887040d935ef2cf7f07c13e6 (patch) | |
tree | 39b96197058265309c19eae83dabbc058fbdc5af | |
parent | a0f38e054037eee3ec02df8868bf38e11adb6c0e (diff) | |
parent | 1b2adaee621f520aa640669a35c089c448294e9e (diff) |
Merge remote-tracking branch 'github/pr/34'
GitHub user @puleglot "Alexander Tsoy" reported build failures for
RADIUS:
> Was broken by commits 93a6fce and 55414b2
These are the recent const-ification work. Changes LGTM.
-rw-r--r-- | src/src/auths/call_radius.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/auths/call_radius.c b/src/src/auths/call_radius.c index 2064ed221..1201078dc 100644 --- a/src/src/auths/call_radius.c +++ b/src/src/auths/call_radius.c @@ -60,10 +60,10 @@ Returns: OK if authentication succeeded */ int -auth_call_radius(uschar *s, uschar **errptr) +auth_call_radius(const uschar *s, uschar **errptr) { uschar *user; -uschar *radius_args = s; +const uschar *radius_args = s; int result; int sep = 0; |