aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/pies.texi2
m---------grecs0
-rw-r--r--src/comp.c1
-rw-r--r--src/meta1parse.c1
4 files changed, 2 insertions, 2 deletions
diff --git a/doc/pies.texi b/doc/pies.texi
index 7ad5008..46bd837 100644
--- a/doc/pies.texi
+++ b/doc/pies.texi
@@ -1148,13 +1148,13 @@ statement. The @samp{component} declaration must contain a
Define a socket to listen on. Allowed values for @var{url} are:
@table @asis
@flindex /etc/protocols
@item inet[+@var{proto}]://@var{ip}:@var{port}
Listen on IPv4@footnote{Support for IPv6 will be added in future
-versions.}. address @var{ip} (may be given as a symbolic host name),
+versions.} address @var{ip} (may be given as a symbolic host name),
on port @var{port}. Optional @var{proto} defines the protocol
to use. It must be a valid protocol name as given in
@file{/etc/protocols}. Default is @samp{tcp}.
@item local[+@var{proto}]://@var{file}[;@var{args}]
@itemx file[+@var{proto}]://@var{file}[;@var{args}]
diff --git a/grecs b/grecs
-Subproject 08070e48d83cd34cddb08be33cf4993fc096c9c
+Subproject ca94270a5e30add9b364d32220fb38d457ebd3f
diff --git a/src/comp.c b/src/comp.c
index 6f8e11f..539db93 100644
--- a/src/comp.c
+++ b/src/comp.c
@@ -66,12 +66,13 @@ component_link (struct component *comp, struct component *ref, int before)
struct complist *list = &comp_list[comp->listidx];
struct component *x;
assert (comp->listidx == ref->listidx);
comp->prev = ref;
+ comp->next = ref->next;
if ((x = ref->next))
x->prev = comp;
else
list->tail = comp;
diff --git a/src/meta1parse.c b/src/meta1parse.c
index 059ea54..4b2fccb 100644
--- a/src/meta1parse.c
+++ b/src/meta1parse.c
@@ -26,13 +26,12 @@ setflag (int *flag, char const *var, int bit)
{
char *p = getenv (var);
if (p && (*p - '0') > 0)
*flag |= bit;
}
-
static enum grecs_tree_recurse_res
freeproc (enum grecs_tree_recurse_op op, struct grecs_node *node, void *data)
{
switch (op)
{
case grecs_tree_recurse_set:

Return to:

Send suggestions and report system problems to the System administrator.