From e0795464c1e7166a87625ba9fc2929d528acdaff Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Fri, 16 Mar 2012 16:38:46 +0000 Subject: [PATCH] [1.5] I think == was meant here. --- applications/jpip/libopenjpip/query_parser.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/jpip/libopenjpip/query_parser.c b/applications/jpip/libopenjpip/query_parser.c index 1e8c657e..e37125c0 100644 --- a/applications/jpip/libopenjpip/query_parser.c +++ b/applications/jpip/libopenjpip/query_parser.c @@ -143,7 +143,7 @@ query_param_t * parse_query( char *query_string) else if( strcasecmp( fieldname, "len") == 0){ sscanf( fieldval, "%d", &query_param->len); - if( query_param->len = 2000) /* for kakadu client*/ + if( query_param->len == 2000) /* for kakadu client*/ strncpy( query_param->box_type[0], "ftyp", 4); } }