diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-12 13:08:06 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2017-03-12 13:08:06 +0000 |
commit | 765feac2cdcb84623f8778e20f8277b32679eeac (patch) | |
tree | 5d354fa1f689e872efe2e167c6d025c7812f1526 /src/daemontools-extras/s6-log.c | |
parent | c60ebd422171808ad58b936914055397bb205bef (diff) | |
download | s6-765feac2cdcb84623f8778e20f8277b32679eeac.tar.xz |
Fix a few omissions in the adaptation
Diffstat (limited to 'src/daemontools-extras/s6-log.c')
-rw-r--r-- | src/daemontools-extras/s6-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemontools-extras/s6-log.c b/src/daemontools-extras/s6-log.c index bdc0a82..c57e6d7 100644 --- a/src/daemontools-extras/s6-log.c +++ b/src/daemontools-extras/s6-log.c @@ -567,7 +567,7 @@ static inline void logdir_init (unsigned int index, uint32_t s, uint32_t n, uint { logdir_t *ldp = logdirs + index ; struct stat st ; - size_t dirlen = str_len(name) ; + size_t dirlen = strlen(name) ; int r ; char x[dirlen + 11] ; ldp->s = s ; |