diff options
author | jbj <devnull@localhost> | 2003-05-15 13:44:18 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2003-05-15 13:44:18 +0000 |
commit | bf8cae09c80ae3f6551e8247ed02ffd24636c296 (patch) | |
tree | 9bb2603f5072b4cf025d47153e6cfff89c2730b5 /rpmio | |
parent | e5b645cfe4edc921fd5c7694beff84b27df988a4 (diff) | |
download | rpm-bf8cae09c80ae3f6551e8247ed02ffd24636c296.tar.gz rpm-bf8cae09c80ae3f6551e8247ed02ffd24636c296.tar.bz2 rpm-bf8cae09c80ae3f6551e8247ed02ffd24636c296.zip |
- fix: nested %if handling, optind initialization posix vs. gloibc.
CVS patchset: 6839
CVS date: 2003/05/15 13:44:18
Diffstat (limited to 'rpmio')
-rw-r--r-- | rpmio/macro.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpmio/macro.c b/rpmio/macro.c index 27f6415e6..c2f5cee25 100644 --- a/rpmio/macro.c +++ b/rpmio/macro.c @@ -967,7 +967,7 @@ grabArgs(MacroBuf mb, const MacroEntry me, /*@returned@*/ const char * se, char #ifdef __GLIBC__ /*@-mods@*/ - optind = 1; + optind = 0; /* XXX but posix != glibc */ /*@=mods@*/ #endif |