diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-01-09 00:03:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-01-09 00:03:33 +0000 |
commit | b90703f5943e27153b824dc0e2070a49c611c251 (patch) | |
tree | 6576cf14dc1ac1761453eed9ea89d87b985968a9 /lib/multi.c | |
parent | 552c3de3575c719161998d541b3750b2ce12674c (diff) | |
download | curl-b90703f5943e27153b824dc0e2070a49c611c251.tar.gz |
struct Curl_sh_entry's 'inuse' member was no longer used and is now removed
Diffstat (limited to 'lib/multi.c')
-rw-r--r-- | lib/multi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/multi.c b/lib/multi.c index 6c59ed09f..d7381e7fa 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -258,7 +258,6 @@ static void multistate(struct Curl_one_easy *easy, CURLMstate state) struct Curl_sh_entry { struct SessionHandle *easy; time_t timestamp; - long inuse; int action; /* what action READ/WRITE this socket waits for */ curl_socket_t socket; /* mainly to ease debugging */ void *socketp; /* settable by users with curl_multi_assign() */ |