summaryrefslogtreecommitdiff
path: root/src/minidentd
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2016-10-14 17:19:23 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2016-10-14 17:19:23 +0000
commit7218cdfb26040566143aaddc98f492d9b0976f0a (patch)
tree6b6c1e1e15319f8d6b8c74a882a862510c9e21df /src/minidentd
parent3f3370eb9f6d7e7a47c559fbcdf915ec4452de90 (diff)
downloads6-networking-7218cdfb26040566143aaddc98f492d9b0976f0a.tar.xz
Port to new librandom API
Diffstat (limited to 'src/minidentd')
-rw-r--r--src/minidentd/minidentd.c28
1 files changed, 13 insertions, 15 deletions
diff --git a/src/minidentd/minidentd.c b/src/minidentd/minidentd.c
index a6dfee4..287a492 100644
--- a/src/minidentd/minidentd.c
+++ b/src/minidentd/minidentd.c
@@ -155,21 +155,16 @@ static void doit (char const *s, ip46_t const *localaddr, ip46_t const *remotead
return ;
}
- if (how == 3)
- {
- char name[9] ;
- char fmt[4 + UINT_FMT] = "uid " ;
- fmt[4 + uint_fmt(fmt+4, uid)] = 0 ;
- if (random_name(name, 8) < 8)
- {
- strerr_warnwu1sys("perform random") ;
- reply(lr, "ERROR", "UNKNOWN-ERROR") ;
- return ;
- }
- reply(lr, "UNIX", name) ;
- logreply("random", fmt, name) ;
- return ;
- }
+ if (how == 3)
+ {
+ char name[9] ;
+ char fmt[4 + UINT_FMT] = "uid " ;
+ fmt[4 + uint_fmt(fmt+4, uid)] = 0 ;
+ random_name(name, 8) ;
+ reply(lr, "UNIX", name) ;
+ logreply("random", fmt, name) ;
+ return ;
+ }
pw = getpwuid(uid) ;
if (!pw)
@@ -254,6 +249,9 @@ int main (int argc, char const *const *argv, char const *const *envp)
if (ip46_is6(&localaddr) != ip46_is6(&remoteaddr))
strerr_dief1x(100, "local and remote address not of the same family") ;
+ if (!random_init())
+ strerr_diefu1sys(111, "init random generator") ;
+
tain_now_g() ;
for (;;)