mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-03-14 12:27:09 -04:00
Changed the order of the msgcode enum so that new items now get added
at the start (which avoids the need for trailing-comma changes on old entries when new ones are added).
This commit is contained in:
6
rsync.h
6
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"
|
||||
|
||||
Reference in New Issue
Block a user