mirror of
https://github.com/uroni/urbackup_frontend_wx.git
synced 2025-10-26 11:19:28 +00:00
Fix incr image bit clashing with full file backup bit
This commit is contained in:
parent
59595f57e1
commit
0a5e5c4e32
@ -5,7 +5,6 @@ const int DONT_ALLOW_STARTING_IMAGE_BACKUPS=8;
|
||||
const int DONT_ALLOW_CONFIG_PATHS=16;
|
||||
const int DONT_SHOW_LOGS=32;
|
||||
const int DONT_DO_IMAGE_BACKUPS=64;
|
||||
const int DONT_ALLOW_STARTING_INCR_IMAGE_BACKUPS=1<<7;
|
||||
const int DONT_ALLOW_STARTING_FULL_IMAGE_BACKUPS=1<<8;
|
||||
const int DONT_ALLOW_STARTING_INCR_FILE_BACKUPS=1<<9;
|
||||
const int DONT_ALLOW_STARTING_FULL_FILE_BACKUPS=1<<10;
|
||||
@ -14,4 +13,5 @@ const int ALLOW_TOKEN_AUTHENTICATION=1<<12;
|
||||
const int DONT_ALLOW_FILE_RESTORE = 1 << 13;
|
||||
const int DONT_ALLOW_COMPONENT_RESTORE = 1 << 14;
|
||||
const int DONT_ALLOW_COMPONENT_CONFIG = 1 << 15;
|
||||
const int STATUS_NO_COMPONENTS = 1 << 16;
|
||||
const int STATUS_NO_COMPONENTS = 1 << 16;
|
||||
const int DONT_ALLOW_STARTING_INCR_IMAGE_BACKUPS = 1 << 17;
|
||||
Loading…
Reference in New Issue
Block a user