From 3ad426f88d274535d7e04e12add72534034ac075 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Mon, 20 May 2019 16:09:13 +0300 Subject: Upgrade grecs --- src/ctl.c | 2 +- src/pies.c | 4 ++-- src/piesctl.c | 2 +- src/sysvinit.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src') diff --git a/src/ctl.c b/src/ctl.c index c0e8c10..475fda6 100644 --- a/src/ctl.c +++ b/src/ctl.c @@ -711,7 +711,7 @@ ctlio_finalize_reply (struct ctlio *io) ctlio_printf (io, "HTTP/1.1 %3d %s", io->code, http_text (io->code)); ctlio_eol (io); - grecs_symtab_enumerate (io->output.headers, format_header, io); + grecs_symtab_foreach (io->output.headers, format_header, io); ctlio_eol (io); ctlbuf_copy (&io->obuf, &tmpbuf); diff --git a/src/pies.c b/src/pies.c index 503be73..cf26050 100644 --- a/src/pies.c +++ b/src/pies.c @@ -539,7 +539,7 @@ _cb_command (enum grecs_callback_command cmd, grecs_error (locus, 0, "wordsplit: %s", strerror (errno)); return 1; } - wordsplit_getwords (&ws, &comp->argc, &comp->argv); + wordsplit_get_words (&ws, &comp->argc, &comp->argv); wordsplit_free (&ws); break; @@ -594,7 +594,7 @@ _cb_env (enum grecs_callback_command cmd, grecs_error (locus, 0, "wordsplit: %s", strerror (errno)); return 1; } - wordsplit_getwords (&ws, &argc, &argv); + wordsplit_get_words (&ws, &argc, &argv); wordsplit_free (&ws); break; diff --git a/src/piesctl.c b/src/piesctl.c index 27be361..44bd263 100644 --- a/src/piesctl.c +++ b/src/piesctl.c @@ -656,7 +656,7 @@ shttp_request_send (struct shttp_connection *conn, int method, char const *uri) if (conn->b64auth) shttp_send_line (conn, "Authorization: Basic %s", conn->b64auth); - grecs_symtab_enumerate (conn->req.headers, send_header, conn); + grecs_symtab_foreach (conn->req.headers, send_header, conn); if (conn->req.content_length) { shttp_send_line (conn, "Content-Length: %lu", conn->req.content_length); diff --git a/src/sysvinit.c b/src/sysvinit.c index c05a040..a33fab7 100644 --- a/src/sysvinit.c +++ b/src/sysvinit.c @@ -1131,7 +1131,7 @@ inittab_parse_line (struct inittab_ctx *ctx) strerror (errno)); return inittab_err; } - wordsplit_getwords (&ws, &comp->argc, &comp->argv); + wordsplit_get_words (&ws, &comp->argc, &comp->argv); comp->program = grecs_strdup (comp->argv[0]); wordsplit_free (&ws); -- cgit v1.2.1