Fix wrapping :)

This commit is contained in:
Andrew Pamment 2017-09-10 23:05:22 +10:00
parent 4649fcfcd8
commit d7324ce513

View File

@ -1015,7 +1015,7 @@ int main(int argc, char **argv)
} }
quote_lines[quote_line_count] = (char *)malloc(i - start_line + 6); quote_lines[quote_line_count] = (char *)malloc(i - start_line + 6);
memset(buffer, 0, 256); memset(buffer, 0, 256);
strncpy(buffer, &unwrapped_quote[start_line], j + 1); strncpy(buffer, &unwrapped_quote[start_line], j);
sprintf(quote_lines[quote_line_count], " %c> %s", msgto[0], buffer); sprintf(quote_lines[quote_line_count], " %c> %s", msgto[0], buffer);
j = 0; j = 0;
start_line = i+1; start_line = i+1;