From: jbj Date: Fri, 4 Aug 2000 19:47:22 +0000 (+0000) Subject: - fix: popt POST callbacks typo. X-Git-Tag: rpm-4.4-release~1960 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ed5a2c61abec313a9effc2a2cd22df4cb06d7769;p=platform%2Fupstream%2Frpm.git - fix: popt POST callbacks typo. CVS patchset: 4012 CVS date: 2000/08/04 19:47:22 --- diff --git a/popt/popt.c b/popt/popt.c index 8527295..4979ed5 100644 --- a/popt/popt.c +++ b/popt/popt.c @@ -46,7 +46,7 @@ static void invokeCallbacksPOST(poptContext con, const struct poptOption * opt) for (; opt->longName || opt->shortName || opt->arg; opt++) { if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_INCLUDE_TABLE) { /* Recurse on included sub-tables. */ - invokeCallbacksPRE(con, opt->arg); + invokeCallbacksPOST(con, opt->arg); } else if ((opt->argInfo & POPT_ARG_MASK) == POPT_ARG_CALLBACK && (opt->argInfo & POPT_CBFLAG_POST)) { poptCallbackType cb = (poptCallbackType)opt->arg;