aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
m---------grecs0
-rw-r--r--ident/provider.c2
-rw-r--r--lib/pp.c1
-rw-r--r--src/ctl.c2
-rw-r--r--src/pies.c4
-rw-r--r--src/piesctl.c2
-rw-r--r--src/sysvinit.c2
7 files changed, 7 insertions, 6 deletions
diff --git a/grecs b/grecs
-Subproject 1c1e7a987f643aae50bf8b45928650bb384e5c6
+Subproject 1fa2dd2c6587822ff682581643499c3c3b78c9e
diff --git a/ident/provider.c b/ident/provider.c
index 44ae342..b212cca 100644
--- a/ident/provider.c
+++ b/ident/provider.c
@@ -77,7 +77,7 @@ idmech_help (void *data, void *unused)
void
pies_config_identity_mechanisms_help ()
{
- grecs_symtab_enumerate (idmech_symtab, idmech_help, NULL);
+ grecs_symtab_foreach (idmech_symtab, idmech_help, NULL);
}
static int
diff --git a/lib/pp.c b/lib/pp.c
index 8a9471a..2ec6d99 100644
--- a/lib/pp.c
+++ b/lib/pp.c
@@ -15,6 +15,7 @@
along with GNU Pies. If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
+#include <stdlib.h>
#include <grecs.h>
#include <sysexits.h>
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.