1
0
mirror of https://github.com/systemd/systemd.git synced 2025-03-23 10:50:16 +03:00

sd-daemon: don't mention strerror_safe() in examples in public headers

It's an internal function we define, noone else should bother.
This commit is contained in:
Lennart Poettering 2019-07-23 15:35:32 +02:00
parent 29db4c3a08
commit 4260384911

View File

@ -260,7 +260,7 @@ int sd_notify(int unset_environment, const char *state);
sd_notifyf(0, "STATUS=Failed to start up: %s\n"
"ERRNO=%i",
strerror_safe(errno),
strerror(errno),
errno);
See sd_notifyf(3) for more information.