git://git.exim.org
/
users
/
jgh
/
exim.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(from parent 1:
a0f38e0
)
Merge remote-tracking branch 'github/pr/34'
author
Phil Pennock
<pdp@exim.org>
Sat, 17 Oct 2015 20:02:41 +0000
(16:02 -0400)
committer
Phil Pennock
<pdp@exim.org>
Sat, 17 Oct 2015 20:02:41 +0000
(16:02 -0400)
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.
src/src/auths/call_radius.c
patch
|
blob
|
history
diff --git
a/src/src/auths/call_radius.c
b/src/src/auths/call_radius.c
index 2064ed2215e24833e28f7c3a22ce5e4944c155f8..1201078dcae24179539beb8e87a01f5579c7b80c 100644
(file)
--- 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;