From 0b30db8070949b12d4694369cc9f6c12c52d0476 Mon Sep 17 00:00:00 2001 From: Erik Troan Date: Tue, 4 Mar 1997 02:23:04 +0000 Subject: fixed POPT_OPTION_DEPTH checking svn path=/trunk/; revision=13 --- support/popt.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/support/popt.c b/support/popt.c index d7005bf8..143c2e72 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 */ -- cgit v1.2.1