blob: 732ff9db39bd317923219bf5f82a9c1e892ae12c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* ISC license. */
#include <string.h>
#include <errno.h>
#include <skalibs/types.h>
#include <tipidee/conf.h>
char const *tipidee_conf_get_errorfile (tipidee_conf const *conf, char const *docroot, unsigned int status)
{
size_t docrootlen = strlen(docroot) ;
char key[7 + docrootlen] ;
if (status < 100 || status > 999) goto err ;
key[0] = 'E' ; key[1] = ':' ;
uint_fmt(key + 2, status) ;
key[5] = ':' ;
memcpy(key + 6, docroot, docrootlen + 1) ;
return tipidee_conf_get_string(conf, key) ;
err:
errno = EINVAL ;
return 0 ;
}
|