summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--errcode.h2
-rw-r--r--log.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/errcode.h b/errcode.h
index aaf13d37..68f74b43 100644
--- a/errcode.h
+++ b/errcode.h
@@ -34,7 +34,7 @@
#define RERR_STREAMIO 12 /* error in rsync protocol data stream */
#define RERR_MESSAGEIO 13 /* errors with program diagnostics */
#define RERR_IPC 14 /* error in IPC code */
-#define RERR_CRASH 15 /* sibling crashed */
+#define RERR_CRASHED 15 /* sibling crashed */
#define RERR_TERMINATED 16 /* sibling terminated abnormally */
#define RERR_SIGNAL 20 /* status returned when sent SIGUSR1, SIGINT */
diff --git a/log.c b/log.c
index 6f7f3a77..b03fc084 100644
--- a/log.c
+++ b/log.c
@@ -65,7 +65,7 @@ struct {
{ RERR_STREAMIO , "error in rsync protocol data stream" },
{ RERR_MESSAGEIO , "errors with program diagnostics" },
{ RERR_IPC , "error in IPC code" },
- { RERR_CRASH , "sibling process crashed" },
+ { RERR_CRASHED , "sibling process crashed" },
{ RERR_TERMINATED , "sibling process terminated abnormally" },
{ RERR_SIGNAL , "received SIGUSR1 or SIGINT" },
{ RERR_WAITCHILD , "some error returned by waitpid()" },