hurl | Simple gopher and http(s) client. |
| download: http://git.y1.nz/archives/hurl.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit e3912666fc4f1516b588d03f6ae389dbc84339b4 parent 7b754ee4801e3fada177b6ade9d3144a126da8a5 Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Fri, 12 Mar 2021 22:33:21 +0100 remove unused variables Diffstat:
| M | hurl.c | 5 | ++--- |
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/hurl.c b/hurl.c @@ -182,7 +182,6 @@ edial(const char *host, const char *port) struct addrinfo hints, *res, *res0; int error, save_errno, s; const char *cause = NULL; - struct timeval timeout; memset(&hints, 0, sizeof(hints)); hints.ai_family = AF_UNSPEC; @@ -480,8 +479,8 @@ err: int gopher_request(void) { - char buf[READ_BUF_SIZ], *p; - const char *errstr, *path; + char buf[READ_BUF_SIZ]; + const char *path; size_t len = 0; ssize_t r; int fd = -1, ret = 1;
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.