We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de8080d commit 1f5ec0bCopy full SHA for 1f5ec0b
netutils/rexecd/rexecd.c
@@ -30,6 +30,7 @@
30
#include <stdio.h>
31
#include <unistd.h>
32
#include <poll.h>
33
+#include <syslog.h>
34
35
/****************************************************************************
36
* Pre-processor Definitions
@@ -280,6 +281,7 @@ int main(int argc, FAR char **argv)
280
281
attr_out:
282
pthread_attr_destroy(&attr);
283
err_out:
284
+ syslog(LOG_ERR, "rexecd failed ret:%d errno:%d\n", ret, errno);
285
close(serv);
286
return ret;
287
}
0 commit comments