summaryrefslogtreecommitdiff
path: root/src/tipideed
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2023-09-21 05:57:24 +0000
committerLaurent Bercot <ska@appnovation.com>2023-09-21 05:57:24 +0000
commit0251ba5cc54cdd24092e442ab7ec364b97d42601 (patch)
tree56dfd48ce39c1958c889daf1d1196571bf82981a /src/tipideed
parent3d334dca671898241732dbc0ef6838b768308da7 (diff)
downloadtipidee-0251ba5cc54cdd24092e442ab7ec364b97d42601.tar.xz
More doc, complete?
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/tipideed')
-rw-r--r--src/tipideed/tipideed.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tipideed/tipideed.c b/src/tipideed/tipideed.c
index 5b6db10..6f453f6 100644
--- a/src/tipideed/tipideed.c
+++ b/src/tipideed/tipideed.c
@@ -135,7 +135,7 @@ static uint32_t get_uint32 (char const *key)
{
uint32_t n ;
if (!tipidee_conf_get_uint32(&g.conf, key, &n))
- strerr_diefu2sys(100, "read config value for ", key) ;
+ strerr_diefu2sys(102, "read config value for ", key) ;
return n ;
}
@@ -356,7 +356,7 @@ int main (int argc, char const *const *argv, char const *const *envp)
g.maxcgibody = get_uint32("G:max_cgi_body_length") ;
{
unsigned int n = tipidee_conf_get_argv(&g.conf, "G:index_file", g.indexnames, 16, &g.indexlen) ;
- if (!n) strerr_dief3x(100, "bad", " config value for ", "G:index_file") ;
+ if (!n) strerr_dief3x(102, "bad", " config value for ", "G:index_file") ;
g.indexn = n-1 ;
}