# HG changeset patch # User Ben Schmidt # Date 1327302095 -39600 # Node ID 7bb2c09d3abb648c3fd83fd008657f13bf9d7a7f # Parent a1ba22fc5a36fb998b8d4aa3f01952ba3e167f8a Don't count the space joining lines if it hasn't been included. diff -r a1ba22fc5a36 -r 7bb2c09d3abb src/prepstdreply.c --- a/src/prepstdreply.c Mon Jan 23 23:47:37 2012 +1100 +++ b/src/prepstdreply.c Mon Jan 23 18:01:35 2012 +1100 @@ -1036,11 +1036,11 @@ tmp = mystrdup(pos); } else { tmp = concatstr(3, prev, " ", pos); + len++; } myfree(line); line = tmp; myfree(prev); - len++; pos = line + len; } prev = NULL;