diff options
Diffstat (limited to 'transact.c')
-rw-r--r-- | transact.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -630,7 +630,7 @@ eoh: * our terminating combination \n\0, we move backwards to * make sure that we don't catch some \n\0 stored in the * decoded part of the message */ - for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--); + for (tcp = line + linelen - 1; tcp > line && (*tcp != 0 || tcp[-1] != '\n'); tcp--) { } if (tcp > line) linelen = tcp - line; } |