From c2654dc8fa912273267620e941ac7a5f1474fabf Mon Sep 17 00:00:00 2001 From: Xin LI Date: Fri, 7 Dec 2012 01:36:53 +0000 Subject: [PATCH] Fix build: reflect the increased field number. --- lib/libradius/radlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libradius/radlib.c b/lib/libradius/radlib.c index 0b67b0ffd90b..55c6f5cb04a1 100644 --- a/lib/libradius/radlib.c +++ b/lib/libradius/radlib.c @@ -484,7 +484,7 @@ rad_config(struct rad_handle *h, const char *path) linenum = 0; while (fgets(buf, sizeof buf, fp) != NULL) { int len; - char *fields[5]; + char *fields[MAX_FIELDS]; int nfields; char msg[ERRSIZE]; char *type;