aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2019-05-20 16:09:13 +0300
committerSergey Poznyakoff <gray@gnu.org>2019-05-20 16:09:13 +0300
commit3ad426f88d274535d7e04e12add72534034ac075 (patch)
treeae1b7abdfa358efc99742853a1c7a1530764c8cc /src
parent843fac8ce97914bafeafb8dc31e6be9448477425 (diff)
downloadpies-3ad426f88d274535d7e04e12add72534034ac075.tar.gz
pies-3ad426f88d274535d7e04e12add72534034ac075.tar.bz2
Upgrade grecs
Diffstat (limited to 'src')
-rw-r--r--src/ctl.c2
-rw-r--r--src/pies.c4
-rw-r--r--src/piesctl.c2
-rw-r--r--src/sysvinit.c2
4 files changed, 5 insertions, 5 deletions
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);

Return to:

Send suggestions and report system problems to the System administrator.