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:
1151@flindex /etc/protocols 1151@flindex /etc/protocols
1152@item inet[+@var{proto}]://@var{ip}:@var{port} 1152@item inet[+@var{proto}]://@var{ip}:@var{port}
1153Listen on IPv4@footnote{Support for IPv6 will be added in future 1153Listen on IPv4@footnote{Support for IPv6 will be added in future
1154versions.}. address @var{ip} (may be given as a symbolic host name), 1154versions.} address @var{ip} (may be given as a symbolic host name),
1155on port @var{port}. Optional @var{proto} defines the protocol 1155on port @var{port}. Optional @var{proto} defines the protocol
1156to use. It must be a valid protocol name as given in 1156to use. It must be a valid protocol name as given in
1157@file{/etc/protocols}. Default is @samp{tcp}. 1157@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)
69 assert (comp->listidx == ref->listidx); 69 assert (comp->listidx == ref->listidx);
70 70
71 comp->prev = ref; 71 comp->prev = ref;
72 comp->next = ref->next;
72 73
73 if ((x = ref->next)) 74 if ((x = ref->next))
74 x->prev = comp; 75 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)
29 *flag |= bit; 29 *flag |= bit;
30} 30}
31 31
32
33static enum grecs_tree_recurse_res 32static enum grecs_tree_recurse_res
34freeproc (enum grecs_tree_recurse_op op, struct grecs_node *node, void *data) 33freeproc (enum grecs_tree_recurse_op op, struct grecs_node *node, void *data)
35{ 34{

Return to:

Send suggestions and report system problems to the System administrator.