X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/4c4d61b0468f000d7c028da773d38783e20249aa..eb0cbdaa90087abb4f17bd86cee359a8fe5cad3d:/rsync.h diff --git a/rsync.h b/rsync.h index ea8667c2..d60f06ae 100644 --- a/rsync.h +++ b/rsync.h @@ -120,10 +120,10 @@ enum logcode { FERROR=1, FINFO=2, FLOG=3 }; /* Messages types that are sent over the message channel. The logcode * values must all be present here with identical numbers. */ enum msgcode { - MSG_DATA=0, /* raw data on the multiplexed stream */ - MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ + MSG_DONE=5, /* current phase is done */ MSG_REDO=4, /* reprocess indicated flist index */ - MSG_DONE=5 /* current phase is done */ + MSG_ERROR=FERROR, MSG_INFO=FINFO, MSG_LOG=FLOG, /* remote logging */ + MSG_DATA=0 /* raw data on the multiplexed stream */ }; #include "errcode.h"