diff options
Diffstat (limited to '')
-rw-r--r-- | g10/cpr.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -202,6 +202,12 @@ write_status_text_and_buffer ( int no, const char *string, if (first && string) { fputs (string, statusfp); count += strlen (string); + /* Make sure that there is space after the string. */ + if (*string && string[strlen (string)-1] != ' ') + { + putc (' ', statusfp); + count++; + } } first = 0; } |