[trunk] Fix equality into test

This commit is contained in:
Mathieu Malaterre 2012-03-26 14:50:34 +00:00
parent 2fb7ac9a58
commit 178309be47
1 changed files with 1 additions and 1 deletions

View File

@ -145,7 +145,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);
}
}