diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-11-07 11:32:31 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-11-07 11:32:42 +0100 |
commit | a733d536adeaf6afed3bb96bbc7f822f49802bd3 (patch) | |
tree | 70ee425c0fa5deaceafa26232c512e09fba1e3a1 /nDPIsrvd.c | |
parent | 9fc35e7a7e29d9a346865651387a02514080c6b4 (diff) |
Added env check `NDPID_STARTED_BY_SYSTEMD` to prevent logging to `stderr` in such a case
* removed `nDPId` shutdown on poll/epoll error
* fixed `chmod_chown()` rv check
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'nDPIsrvd.c')
-rw-r--r-- | nDPIsrvd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nDPIsrvd.c b/nDPIsrvd.c index 9e5614d27..89f697b85 100644 --- a/nDPIsrvd.c +++ b/nDPIsrvd.c @@ -1834,7 +1834,7 @@ int main(int argc, char ** argv) GET_CMDARG_STR(nDPIsrvd_options.user), strerror(ret)); } - if (ret != -EPERM) + if (ret != EPERM) { goto error_unlink_sockets; } @@ -1867,7 +1867,7 @@ int main(int argc, char ** argv) GET_CMDARG_STR(nDPIsrvd_options.user), strerror(ret)); } - if (ret != -EPERM) + if (ret != EPERM) { goto error_unlink_sockets; } |