diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/response.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/response.c b/src/response.c index 96e27cf..154cd8d 100644 --- a/src/response.c +++ b/src/response.c @@ -20,7 +20,7 @@ char *LibHTTPC_dumpResponse(struct LibHTTPC_Response *response, char *buf, size_ #define append(X) strncat(buf, (X), buf_len - strlen(buf)) append(response->version); - append(""); + append(" "); append(status); append(" "); append(response->phrase); |