blob: 181ba507191a2fbf3d4053a1b46ea1e5dc9def2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- dep/ptpd_dep.h.orig
+++ dep/ptpd_dep.h
@@ -22,7 +22,7 @@
/* system messages */
#define ERROR(x, ...) fprintf(stderr, "(ptpd error) " x, ##__VA_ARGS__)
-#define PERROR(x, ...) fprintf(stderr, "(ptpd error) " x ": %m\n", ##__VA_ARGS__)
+#define PERROR(x, ...) fprintf(stderr, "(ptpd error) " x ": %s\n", ##__VA_ARGS__, strerror(errno))
#define NOTIFY(x, ...) fprintf(stderr, "(ptpd notice) " x, ##__VA_ARGS__)
/* debug messages */
|