Re: [systemd-devel] [PATCH] Fix strerror_r segfault on non-glibc systems

2018-03-29 Thread systemd github import bot
Patchset imported to github. To create a pull request, one of the main developers has to initiate one via: -- Generated by https://github.com/haraldh/mail2git

Re: [systemd-devel] [PATCH] Fix strerror_r segfault on non-glibc systems

2018-03-29 Thread Lennart Poettering
On Do, 29.03.18 14:41, Ioan-Adrian Ratiu (a...@adirat.com) wrote: > POSIX strerror_r returns an int while the glibc "extension" returns a char* > and > this causes segfaults when running on systems with libc's like musl which only > implement the portable version or deliberately don't provide a f

Re: [systemd-devel] [PATCH] Fix strerror_r segfault on non-glibc systems

2018-03-29 Thread Paul Menzel
Dear Ioan-Adrian, Thank you for your patch (from the future `Date: Thu, 29 Mar 2018 14:41:30 +0300`). I believe systemd moved the development to GitHub [1] and only accepts merge/pull requests [1]. Please see our Contribution Guidelines for more information about filing GitHub Issues and po

[systemd-devel] [PATCH] Fix strerror_r segfault on non-glibc systems

2018-03-29 Thread Ioan-Adrian Ratiu
POSIX strerror_r returns an int while the glibc "extension" returns a char* and this causes segfaults when running on systems with libc's like musl which only implement the portable version or deliberately don't provide a flag to identify compiling using their headers. Glibc provides the POSIX var