diff options
author | Mark Wielaard <[email protected]> | 2013-10-18 10:37:53 +0200 |
---|---|---|
committer | Mark Wielaard <[email protected]> | 2013-10-18 10:38:00 +0200 |
commit | 4f7673f97b5d09db2bc216cc3c46b96e999c15f2 (patch) | |
tree | a737b34c8aabd25b67ea9189badde1ddaf19e166 /src/ar.c | |
parent | 93b0e0172deeba198a7910ad73187256f9d433b7 (diff) |
ar: Correct operation check when instance_specifed is set.
Reported-by: David Binderman <[email protected]>
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'src/ar.c')
-rw-r--r-- | src/ar.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,7 +202,7 @@ MEMBER parameter required for 'a', 'b', and 'i' modifiers")); if (instance_specifed) { /* Only valid for certain operations. */ - if (operation == oper_extract && operation == oper_delete) + if (operation != oper_extract && operation != oper_delete) error (1, 0, gettext ("\ 'N' is only meaningful with the 'x' and 'd' options")); |