diff options
author | Yang Tse <yangsita@gmail.com> | 2008-02-27 14:54:18 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-02-27 14:54:18 +0000 |
commit | 8adc7038fe513ff3651845be186560686e797f14 (patch) | |
tree | cc45b80ff738d2fd885ba564575fb256377949bc /tests/server | |
parent | b12fef3f3137bc606d283a2e527dd9050edf2b12 (diff) |
make comment more precise
Diffstat (limited to 'tests/server')
-rw-r--r-- | tests/server/sockfilt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/server/sockfilt.c b/tests/server/sockfilt.c index 17cb9d975..8db3ed522 100644 --- a/tests/server/sockfilt.c +++ b/tests/server/sockfilt.c @@ -192,7 +192,7 @@ static ssize_t fullwrite(int filedes, const void *buffer, size_t nbytes) * read_stdin tries to read from stdin nbytes into the given buffer. This is a * blocking function that will only return TRUE when nbytes have actually been * read or FALSE when an unrecoverable error has been detected. Failure of this - * function is an indication that the whole program should terminate. + * function is an indication that the sockfilt process should terminate. */ static bool read_stdin(void *buffer, size_t nbytes) @@ -209,7 +209,7 @@ static bool read_stdin(void *buffer, size_t nbytes) * write_stdout tries to write to stdio nbytes from the given buffer. This is a * blocking function that will only return TRUE when nbytes have actually been * written or FALSE when an unrecoverable error has been detected. Failure of - * this function is an indication that the whole program should terminate. + * this function is an indication that the sockfilt process should terminate. */ static bool write_stdout(const void *buffer, size_t nbytes) |