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
@@ -1151,7 +1151,7 @@ Define a socket to listen on. Allowed values for @var{url} are:
@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}.
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
@@ -69,6 +69,7 @@ component_link (struct component *comp, struct component *ref, int before)
assert (comp->listidx == ref->listidx);
comp->prev = ref;
+ comp->next = ref->next;
if ((x = ref->next))
x->prev = comp;
diff --git a/src/meta1parse.c b/src/meta1parse.c
index 059ea54..4b2fccb 100644
--- a/src/meta1parse.c
+++ b/src/meta1parse.c
@@ -29,7 +29,6 @@ setflag (int *flag, char const *var, int bit)
*flag |= bit;
}
-
static enum grecs_tree_recurse_res
freeproc (enum grecs_tree_recurse_op op, struct grecs_node *node, void *data)
{

Return to:

Send suggestions and report system problems to the System administrator.