summaryrefslogtreecommitdiffstats
path: root/src/ar.c
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2013-10-18 10:37:53 +0200
committerMark Wielaard <[email protected]>2013-10-18 10:38:00 +0200
commit4f7673f97b5d09db2bc216cc3c46b96e999c15f2 (patch)
treea737b34c8aabd25b67ea9189badde1ddaf19e166 /src/ar.c
parent93b0e0172deeba198a7910ad73187256f9d433b7 (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ar.c b/src/ar.c
index 2d6ad60c..f51f0efd 100644
--- a/src/ar.c
+++ b/src/ar.c
@@ -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"));