From 14c5a24fe74f7ebaf94c69721025f142d42ef1e0 Mon Sep 17 00:00:00 2001 From: George Kadianakis Date: Mon, 18 Jul 2011 02:35:29 +0200 Subject: Replaced ST_* enum prefix for stream status with IO_STREAM_*. --- src/common/util.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/common/util.h') diff --git a/src/common/util.h b/src/common/util.h index 1b81fa3149..12dc106ace 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -281,10 +281,10 @@ ssize_t read_all(tor_socket_t fd, char *buf, size_t count, int isSocket); /** Status of an I/O stream. */ enum stream_status { - ST_OKAY, - ST_EAGAIN, - ST_TERM, - ST_CLOSED + IO_STREAM_OKAY, + IO_STREAM_EAGAIN, + IO_STREAM_TERM, + IO_STREAM_CLOSED }; enum stream_status get_string_from_pipe(FILE *stream, char *buf, size_t count); -- cgit v1.2.3-54-g00ecf