diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2015-11-28 23:29:24 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2015-11-28 23:45:18 +0000 |
commit | 8dbb958ad5ddcbad39134a9652a0f575b80381ec (patch) | |
tree | 2185058357de6e67dffcdd0b693669f85972ecd5 | |
parent | b90a2240cb6230e2c8558b26f6663a6ee60ebd70 (diff) |
Testsuite: permit "client" utility to pass trailing spaces from script input lines
-rw-r--r-- | test/src/client.c | 5 | ||||
-rw-r--r-- | test/stdout/0482 | 4 |
2 files changed, 5 insertions, 4 deletions
diff --git a/test/src/client.c b/test/src/client.c index ee00912bc..ac9a965e0 100644 --- a/test/src/client.c +++ b/test/src/client.c @@ -841,8 +841,9 @@ if (tls_on_connect) while (fgets(CS outbuffer, sizeof(outbuffer), stdin) != NULL) { int n = (int)strlen(CS outbuffer); - while (n > 0 && isspace(outbuffer[n-1])) n--; - outbuffer[n] = 0; + + /* Strip trailing newline */ + if (outbuffer[n-1] == '\n') outbuffer[--n] = 0; /* Expect incoming */ diff --git a/test/stdout/0482 b/test/stdout/0482 index 9ece5a3ad..ad7ab62dc 100644 --- a/test/stdout/0482 +++ b/test/stdout/0482 @@ -14,8 +14,8 @@ Connecting to 127.0.0.1 port 1225 ... connected ??? 3 <<< 354 Enter message, ending with "." on a line by itself >>> From : userx ->>> ->>> This is junk +>>> +>>> This is junk >>> . ??? 5 <<< 550 Administrative prohibition |