diff options
-rw-r--r-- | sshexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -232,7 +232,7 @@ main(int argc_unused, char *argv[]) } destination = *argv++; - if (!destination && !*argv) + if (!destination || !*argv) usage(); if (dir) { |
![]() |
index : sshexec | |
[Complete] SSH wrapper that makes it easy to run commands directly in the SSH command | Mattias Andrée <m@maandree.se> |
aboutsummaryrefslogtreecommitdiffstats |
-rw-r--r-- | sshexec.c | 2 |
@@ -232,7 +232,7 @@ main(int argc_unused, char *argv[]) } destination = *argv++; - if (!destination && !*argv) + if (!destination || !*argv) usage(); if (dir) { |