diff options
author | jbj <devnull@localhost> | 2002-07-02 13:16:50 +0000 |
---|---|---|
committer | jbj <devnull@localhost> | 2002-07-02 13:16:50 +0000 |
commit | 77076c7c8d83f8b783634c7328b132b938389987 (patch) | |
tree | 4b5e2407e4a28acf29009bfc650080524cdb6daa /lib/poptI.c | |
parent | 8c4991e9d533de552b957ea445d65f6834205f29 (diff) | |
download | rpm-77076c7c8d83f8b783634c7328b132b938389987.tar.gz rpm-77076c7c8d83f8b783634c7328b132b938389987.tar.bz2 rpm-77076c7c8d83f8b783634c7328b132b938389987.zip |
add (disabled for now) dependency check to rpmgraph.
splint and gettext fiddles.
CVS patchset: 5536
CVS date: 2002/07/02 13:16:50
Diffstat (limited to 'lib/poptI.c')
-rw-r--r-- | lib/poptI.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/poptI.c b/lib/poptI.c index d85570ceb..13736dedb 100644 --- a/lib/poptI.c +++ b/lib/poptI.c @@ -51,9 +51,9 @@ static void installArgCallback( /*@unused@*/ poptContext con, argerror(_("exclude paths must begin with a /")); ia->relocations = xrealloc(ia->relocations, sizeof(*ia->relocations) * (ia->numRelocations + 1)); - /*@-temptrans@*/ +/*@-temptrans@*/ ia->relocations[ia->numRelocations].oldPath = xstrdup(arg); - /*@=temptrans@*/ +/*@=temptrans@*/ ia->relocations[ia->numRelocations].newPath = NULL; ia->numRelocations++; break; @@ -71,12 +71,12 @@ static void installArgCallback( /*@unused@*/ poptContext con, argerror(_("relocations must have a / following the =")); ia->relocations = xrealloc(ia->relocations, sizeof(*ia->relocations) * (ia->numRelocations + 1)); - /*@-temptrans@*/ +/*@-temptrans@*/ ia->relocations[ia->numRelocations].oldPath = oldPath; - /*@=temptrans@*/ - /*@-kepttrans@*/ +/*@=temptrans@*/ +/*@-kepttrans -usereleased @*/ ia->relocations[ia->numRelocations].newPath = newPath; - /*@=kepttrans@*/ +/*@=kepttrans =usereleased @*/ ia->numRelocations++; } break; case POPT_ROLLBACK: |