Merge remote-tracking branch 'github/pr/34'
authorPhil Pennock <pdp@exim.org>
Sat, 17 Oct 2015 20:02:41 +0000 (16:02 -0400)
committerPhil 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

index 2064ed2215e24833e28f7c3a22ce5e4944c155f8..1201078dcae24179539beb8e87a01f5579c7b80c 100644 (file)
@@ -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;