summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--support/popt.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/support/popt.c b/support/popt.c
index d7005bf..143c2e7 100644
--- a/support/popt.c
+++ b/support/popt.c
@@ -117,7 +117,8 @@ int poptGetNextOpt(poptContext con) {
strcmp(con->aliases[i].longName, optString))) i--;
if (i >= 0) {
- if ((con->os - con->optionStack) == POPT_OPTION_DEPTH)
+ if ((con->os - con->optionStack + 1)
+ == POPT_OPTION_DEPTH)
return POPT_ERROR_OPTSTOODEEP;
con->os++;
@@ -162,7 +163,7 @@ int poptGetNextOpt(poptContext con) {
con->aliases[i].shortName != *origOptString) i--;
if (i >= 0) {
- if ((con->os - con->optionStack) == POPT_OPTION_DEPTH)
+ if ((con->os - con->optionStack + 1) == POPT_OPTION_DEPTH)
return POPT_ERROR_OPTSTOODEEP;
/* We'll need this on the way out */