summaryrefslogtreecommitdiff
path: root/lib/poptI.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2002-07-02 13:16:50 +0000
committerjbj <devnull@localhost>2002-07-02 13:16:50 +0000
commit77076c7c8d83f8b783634c7328b132b938389987 (patch)
tree4b5e2407e4a28acf29009bfc650080524cdb6daa /lib/poptI.c
parent8c4991e9d533de552b957ea445d65f6834205f29 (diff)
downloadrpm-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.c12
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: