diff options
| -rw-r--r-- | src/idevicerestore.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/idevicerestore.c b/src/idevicerestore.c index 7982ed7..b5d4858 100644 --- a/src/idevicerestore.c +++ b/src/idevicerestore.c @@ -81,20 +81,20 @@ int main(int argc, char* argv[]) {  			return 0;  		case 'd': -			client->flags &= FLAG_DEBUG; +			client->flags |= FLAG_DEBUG;  			idevicerestore_debug = 1;  			break;  		case 'e': -			client->flags &= FLAG_ERASE; +			client->flags |= FLAG_ERASE;  			break;  		case 'c': -			client->flags &= FLAG_CUSTOM; +			client->flags |= FLAG_CUSTOM;  			break;  		case 'x': -			client->flags &= FLAG_EXCLUDE; +			client->flags |= FLAG_EXCLUDE;  			break;  		case 'u': | 
