Skip to content

Commit

Permalink
parse_fline: fix implicit cast sign
Browse files Browse the repository at this point in the history
(cherry picked from commit b0eb928)
  • Loading branch information
razvancrainea committed Sep 12, 2017
1 parent 935fd57 commit f77ae30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/parse_fline.c
Expand Up @@ -1275,7 +1275,7 @@ char* parse_first_line(char* buffer, unsigned int len, struct msg_start * fl)
if (prn) {
for (t=0; t<offset; t++)
if (*(buffer+t)) *(prn+t)=*(buffer+t);
else *(prn+t)=248;
else *(prn+t)=248U;
LM_ERR("parsed so far: %.*s\n", offset, ZSW(prn) );
pkg_free( prn );
};
Expand Down

0 comments on commit f77ae30

Please sign in to comment.