diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-23 12:22:51 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2015-08-23 12:22:51 +0200 |
commit | bc3604d9b226ac475a104cd8ae2ca2d1d4a27984 (patch) | |
tree | e796661f371a94a50edfdc693388bb911b253dfd /profile/kodak2ti3.c | |
parent | 509016be676f7915d635fa57144d2a441e3090ca (diff) | |
parent | c0b89ac5bfb90835ef01573267020e42d4fe070c (diff) |
Merge new upstream release
Diffstat (limited to 'profile/kodak2ti3.c')
-rwxr-xr-x[-rw-r--r--] | profile/kodak2ti3.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/profile/kodak2ti3.c b/profile/kodak2ti3.c index 53278e1..b510719 100644..100755 --- a/profile/kodak2ti3.c +++ b/profile/kodak2ti3.c @@ -104,21 +104,21 @@ int main(int argc, char *argv[]) if (argv[fa][1] == '?') usage(); - else if (argv[fa][1] == 'l' || argv[fa][1] == 'L') { - fa = nfa; + else if (argv[fa][1] == 'l') { if (na == NULL) usage(); + fa = nfa; limit = atoi(na); if (limit < 1) limit = 1; } - else if (argv[fa][1] == 'r' || argv[fa][1] == 'r') { - fa = nfa; + else if (argv[fa][1] == 'r') { if (na == NULL) usage(); + fa = nfa; strcpy(tarname, na); } - else if (argv[fa][1] == 'v' || argv[fa][1] == 'V') + else if (argv[fa][1] == 'v') verb = 1; else usage(); |