diff options
author | Stef Walter <stef@memberwebs.com> | 2004-10-05 16:38:49 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-10-05 16:38:49 +0000 |
commit | 08bf44b85193fd70c6a1d1fe195334b88bea1feb (patch) | |
tree | c47d49772649300731f190c979a4c3d0f64af8ff /common/spio.c | |
parent | ec0b5feaa141962497873ebf6997904aaacb1812 (diff) |
Don't send server NOOPs if it closed the connection.
Diffstat (limited to 'common/spio.c')
-rw-r--r-- | common/spio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/spio.c b/common/spio.c index 4075e9a..f3247da 100644 --- a/common/spio.c +++ b/common/spio.c @@ -478,7 +478,7 @@ int spio_write_data(spctx_t* ctx, spio_t* io, const char* data) if(!spio_valid(io)) { - sp_message(ctx, LOG_ERR, "connection closed. can't write data."); + sp_message(ctx, LOG_ERR, "connection closed. can't write data"); return -1; } |