diff options
Diffstat (limited to 'src/irecovery.c')
-rw-r--r-- | src/irecovery.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/irecovery.c b/src/irecovery.c index e9ecdea..ae828af 100644 --- a/src/irecovery.c +++ b/src/irecovery.c @@ -99,13 +99,13 @@ int main(int argc, char** argv) { action = kStartShell; break; - case 'c': - action = kSendCommand; + case 'f': + action = kSendFile; argument = optarg; break; - case 'f': - action = kSendFile; + case 'c': + action = kSendCommand; argument = optarg; break; |