From: jbj Date: Mon, 23 Dec 2002 20:58:36 +0000 (+0000) Subject: Sanity. X-Git-Tag: tznext/4.11.0.1.tizen20130304~7003 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e3c423226eb5dcf13d3ae5ffb5abb11900f061fb;p=tools%2Flibrpm-tizen.git Sanity. CVS patchset: 5960 CVS date: 2002/12/23 20:58:36 --- diff --git a/build/parseSpec.c b/build/parseSpec.c index 147c03a..fda62e0 100644 --- a/build/parseSpec.c +++ b/build/parseSpec.c @@ -10,6 +10,7 @@ static int _debug = 0; #include #include +#include "rpmts.h" #include "debug.h" /*@access FD_t @*/ /* compared with NULL */ diff --git a/lib/rpmds.c b/lib/rpmds.c index 2f80d76..510fd0c 100644 --- a/lib/rpmds.c +++ b/lib/rpmds.c @@ -543,39 +543,39 @@ assert(argv[ac] != NULL); } /*@=bounds@*/ -static rpmds rpmdsDup(const rpmds this) - /*@modifies this @*/ +static rpmds rpmdsDup(const rpmds ods) + /*@modifies ods @*/ { rpmds ds = xcalloc(1, sizeof(*ds)); size_t nb; - ds->h = (this->h != NULL ? headerLink(this->h) : NULL); + ds->h = (ods->h != NULL ? headerLink(ods->h) : NULL); /*@-assignexpose@*/ - ds->Type = this->Type; + ds->Type = ods->Type; /*@=assignexpose@*/ - ds->tagN = this->tagN; - ds->Count = this->Count; - ds->i = this->i; - ds->l = this->l; - ds->u = this->u; + ds->tagN = ods->tagN; + ds->Count = ods->Count; + ds->i = ods->i; + ds->l = ods->l; + ds->u = ods->u; nb = (ds->Count+1) * sizeof(*ds->N); ds->N = (ds->h != NULL - ? memcpy(xmalloc(nb), this->N, nb) - : rpmdsDupArgv(this->N, this->Count) ); - ds->Nt = this->Nt; + ? memcpy(xmalloc(nb), ods->N, nb) + : rpmdsDupArgv(ods->N, ods->Count) ); + ds->Nt = ods->Nt; nb = (ds->Count+1) * sizeof(*ds->EVR); ds->EVR = (ds->h != NULL - ? memcpy(xmalloc(nb), this->EVR, nb) - : rpmdsDupArgv(this->EVR, this->Count) ); - ds->EVRt = this->EVRt; + ? memcpy(xmalloc(nb), ods->EVR, nb) + : rpmdsDupArgv(ods->EVR, ods->Count) ); + ds->EVRt = ods->EVRt; nb = (ds->Count * sizeof(*ds->Flags)); ds->Flags = (ds->h != NULL - ? this->Flags - : memcpy(xmalloc(nb), this->Flags, nb) ); - ds->Ft = this->Ft; + ? ods->Flags + : memcpy(xmalloc(nb), ods->Flags, nb) ); + ds->Ft = ods->Ft; /*@-compmempass@*/ /* FIX: ds->Flags is kept, not only */ return rpmdsLink(ds, (ds ? ds->Type : NULL)); @@ -584,11 +584,11 @@ static rpmds rpmdsDup(const rpmds this) } /*@-bounds@*/ -int rpmdsFind(rpmds ds, rpmds this) +int rpmdsFind(rpmds ds, rpmds ods) { int comparison; - if (ds == NULL || this == NULL) + if (ds == NULL || ods == NULL) return -1; ds->l = 0; @@ -596,11 +596,11 @@ int rpmdsFind(rpmds ds, rpmds this) while (ds->l < ds->u) { ds->i = (ds->l + ds->u) / 2; - comparison = strcmp(this->N[this->i], ds->N[ds->i]); + comparison = strcmp(ods->N[ods->i], ds->N[ds->i]); if (comparison == 0) - comparison = strcmp(this->EVR[this->i], ds->EVR[ds->i]); + comparison = strcmp(ods->EVR[ods->i], ds->EVR[ds->i]); if (comparison == 0) - comparison = (this->Flags[this->i] - ds->Flags[ds->i]); + comparison = (ods->Flags[ods->i] - ds->Flags[ds->i]); if (comparison < 0) ds->u = ds->i; @@ -614,7 +614,7 @@ int rpmdsFind(rpmds ds, rpmds this) /*@=bounds@*/ /*@-bounds@*/ -int rpmdsMerge(rpmds * dsp, rpmds this) +int rpmdsMerge(rpmds * dsp, rpmds ods) { rpmds ds; const char ** N; @@ -623,16 +623,16 @@ int rpmdsMerge(rpmds * dsp, rpmds this) int j; int save; - if (dsp == NULL || this == NULL) + if (dsp == NULL || ods == NULL) return -1; /* If not initialized yet, dup the 1st entry. */ /*@-branchstate@*/ if (*dsp == NULL) { - save = this->Count; - this->Count = 1; - *dsp = rpmdsDup(this); - this->Count = save; + save = ods->Count; + ods->Count = 1; + *dsp = rpmdsDup(ods); + ods->Count = save; } /*@=branchstate@*/ ds = *dsp; @@ -640,14 +640,14 @@ int save; /* * Add new entries. */ -save = this->i; - this = rpmdsInit(this); - if (this != NULL) - while (rpmdsNext(this) >= 0) { +save = ods->i; + ods = rpmdsInit(ods); + if (ods != NULL) + while (rpmdsNext(ods) >= 0) { /* * If this entry is already present, don't bother. */ - if (rpmdsFind(ds, this) >= 0) + if (rpmdsFind(ds, ods) >= 0) continue; /* @@ -655,14 +655,14 @@ save = this->i; */ for (j = ds->Count; j > ds->u; j--) ds->N[j] = ds->N[j-1]; - ds->N[ds->u] = this->N[this->i]; + ds->N[ds->u] = ods->N[ods->i]; N = rpmdsDupArgv(ds->N, ds->Count+1); ds->N = _free(ds->N); ds->N = N; for (j = ds->Count; j > ds->u; j--) ds->EVR[j] = ds->EVR[j-1]; - ds->EVR[ds->u] = this->EVR[this->i]; + ds->EVR[ds->u] = ods->EVR[ods->i]; EVR = rpmdsDupArgv(ds->EVR, ds->Count+1); ds->EVR = _free(ds->EVR); ds->EVR = EVR; @@ -672,7 +672,7 @@ save = this->i; memcpy(Flags, ds->Flags, ds->u * sizeof(*Flags)); if (ds->u < ds->Count) memcpy(Flags + ds->u + 1, ds->Flags + ds->u, (ds->Count - ds->u) * sizeof(*Flags)); - Flags[ds->u] = this->Flags[this->i]; + Flags[ds->u] = ods->Flags[ods->i]; ds->Flags = _free(ds->Flags); ds->Flags = Flags; @@ -681,7 +681,7 @@ save = this->i; } /*@-nullderef@*/ -this->i = save; +ods->i = save; /*@=nullderef@*/ return 0; } diff --git a/lib/rpmds.h b/lib/rpmds.h index ee0d6da..f088e50 100644 --- a/lib/rpmds.h +++ b/lib/rpmds.h @@ -269,22 +269,22 @@ rpmds rpmdsInit(/*@null@*/ rpmds ds) /** * Find a dependency set element using binary search. * @param ds dependency set to search - * @param this dependency set element to find. + * @param ods dependency set element to find. * @return dependency index (or -1 if not found) */ /*@null@*/ -int rpmdsFind(rpmds ds, /*@null@*/ rpmds this) - /*@modifies ds, this @*/; +int rpmdsFind(rpmds ds, /*@null@*/ rpmds ods) + /*@modifies ds, ods @*/; /** * Merge a dependency set maintaining (N,EVR,Flags) sorted order. * @retval *dsp (merged) dependency set - * @param this dependency set to merge + * @param ods dependency set to merge * @return (merged) dependency index */ /*@null@*/ -int rpmdsMerge(/*@out@*/ rpmds * dsp, /*@null@*/ rpmds this) - /*@modifies *dsp, this @*/; +int rpmdsMerge(/*@out@*/ rpmds * dsp, /*@null@*/ rpmds ods) + /*@modifies *dsp, ods @*/; /** * Compare two versioned dependency ranges, looking for overlap. diff --git a/po/cs.po b/po/cs.po index 1dc7434..e72704f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-07-24 10:02+0100\n" "Last-Translator: Milan Kerslager \n" "Language-Team: Czech \n" @@ -896,7 +896,7 @@ msgstr " msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "øádek %d: Nepøípustný znak '-' v %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot nemù¾e být \"/\": %s\n" @@ -1062,47 +1062,47 @@ msgstr " msgid "line %d: Second %s\n" msgstr "øádek %d: Druhý %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "øádek %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "Nemohu otevøít %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "Neuzavøený %%if\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean vrátil %d\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else bez poèíteèního %%if\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif bez poèáteèního %%if\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "po¹kozený pøíkaz %%include\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "Nenalezeny ¾ádné kompatibilní architektury pro sestavení\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "Balíèek nemá ¾ádné %%description: %s\n" @@ -3126,41 +3126,41 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nemohu vytvoøit %s: %s\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 #, fuzzy msgid "shared" msgstr "sdílen v síti " -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/da.po b/po/da.po index 70574be..5fdac70 100644 --- a/po/da.po +++ b/po/da.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-04-05 23:03GMT\n" "Last-Translator: Claus Hindsgaul \n" "Language-Team: Danish \n" @@ -893,7 +893,7 @@ msgstr "linie %d: Tomt m msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linie %d: Ugyldigt tegn '-' i %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan ikke være \"/\": %s\n" @@ -1059,50 +1059,50 @@ msgstr "linie %d: skriptprogram skal starte med '/': %s\n" msgid "line %d: Second %s\n" msgstr "linie %d: Anden %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "linie %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "" "Kunne ikke åbne %s: %s\n" "\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "Ikke-lukket %%if\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerer %d\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Fik et %%else uden et %%if\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Fik et %%endif uden et %%if\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "forkert udført '%%include'-kommando\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Ingen arkitekturer, der kan opbygges\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakke har ingen %%description: %s\n" @@ -3138,40 +3138,40 @@ msgstr "lukkede db-milj msgid "removed db environment %s/%s\n" msgstr "fjernede db-miljø %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "åbner db-miljø %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "lukkede db-indeks %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "lukkede db-indeks %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "åbner db-indeks %s/%s %s mode=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kan ikke opnå %s lås på %s/%s\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "eksklusiv" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "delt" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" diff --git a/po/de.po b/po/de.po index 61032a2..a93e561 100644 --- a/po/de.po +++ b/po/de.po @@ -37,7 +37,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 1998-08-03 18:02+02:00\n" "Last-Translator: Karl Eichwalder \n" "Language-Team: German \n" @@ -992,7 +992,7 @@ msgstr " msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1169,49 +1169,49 @@ msgid "line %d: Second %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "Öffnen von %s fehlgeschlagen: %s" # , c-format #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "Öffnen von %s fehlgeschlagen\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Paket-Architektur nicht überprüfen" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %s wird nicht in %s aufgeführt" @@ -3315,40 +3315,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "Datenbank aus der vorhandenen neu erstellen" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kann %s lock für die Datenbank nicht bekommen" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "exklusiv" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "geteilt" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "Datenbank aus der vorhandenen neu erstellen" diff --git a/po/fi.po b/po/fi.po index 143cba1..4adcae7 100644 --- a/po/fi.po +++ b/po/fi.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 1998-05-02 21:41:47-0400\n" "Last-Translator: Raimo Koski \n" "Language-Team: Finnish \n" @@ -906,7 +906,7 @@ msgstr "en voinut avata %s: %s" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "en voinut avata %s: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1070,48 +1070,48 @@ msgstr "siirtojen pit msgid "line %d: Second %s\n" msgstr "en voinut avata %s: %s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "en voinut avata %s: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "%s:n avaus epäonnistui\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "älä tarkista paketin arkkitehtuuria" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paketti %s ei ole %s:ssä" @@ -3180,40 +3180,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "en voi saada %s lukitusta tietokantaan" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "poissulkevaa" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "jaettua" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "kokoa tietokanta uudelleen vanhasta tietokannasta" diff --git a/po/fr.po b/po/fr.po index 65ef383..92f719c 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -927,7 +927,7 @@ msgstr "impossible d'ouvrir: %s\n" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1091,48 +1091,48 @@ msgstr "les arguments de --root (-r) doivent commencer par un /" msgid "line %d: Second %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "impossible d'ouvrir: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "impossible d'ouvrir: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "%s ne peut tre construit sur cette architecture\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" @@ -3216,40 +3216,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "impossible d'ouvrir: %s\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "aucun package n'a t spcifi pour la dsinstallation" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "impossible d'ouvrir: %s\n" diff --git a/po/gl.po b/po/gl.po index 1c37a09..fb5d439 100644 --- a/po/gl.po +++ b/po/gl.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.1\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-01-13 22:31+0100\n" "Last-Translator: Jesús Bravo Álvarez \n" "Language-Team: Galician \n" @@ -872,7 +872,7 @@ msgstr "" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1036,47 +1036,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -3030,40 +3030,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/is.po b/po/is.po index 2c18b31..d30bbef 100644 --- a/po/is.po +++ b/po/is.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-07-12 13:25+0000\n" "Last-Translator: Richard Allen \n" "Language-Team: is \n" @@ -879,7 +879,7 @@ msgstr "l msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "lína %d: Ólöglegt tákn '-' í %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1043,47 +1043,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "lína %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "Get ekki opnað %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -3060,40 +3060,40 @@ msgstr "loka msgid "removed db environment %s/%s\n" msgstr "fjarlægði gagnagrunnsumhverfi %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "opna gagnagrunnsumhverfi %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "einka" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "deildann" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/ja.po b/po/ja.po index eaeb52d..7d16ef0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 1999-12-01 22:49 +JST\n" "Last-Translator: Kanda Mitsuru \n" "Language-Team: JRPM \n" @@ -922,7 +922,7 @@ msgstr "%d msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "%d ¹ÔÌÜ: %s Ãæ¤ËÉÔÀµ¤Êʸ»ú '-' : %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "%d ¹ÔÌÜ: BuildRoot ¤Ï \"/\" ¤Ë¤¹¤ë¤³¤È¤Ï¤Ç¤­¤Þ¤»¤ó: %s" @@ -1089,48 +1089,48 @@ msgstr "%d msgid "line %d: Second %s\n" msgstr "%d ¹ÔÌÜ: 2ÈÖÌܤΠ%s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "%d ¹ÔÌÜ: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "¥ª¡¼¥×¥ó¤Ç¤­¤Þ¤»¤ó: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "%%if ¤¬ÊĤ¸¤Æ¤¤¤Þ¤»¤ó" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, fuzzy, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s%d: parseExpressionBoolean ¤¬ %d ¤òÊÖ¤·¤Þ¤·¤¿" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%else ¤¬¤¢¤ê¤Þ¤¹" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: if ¤¬¤Ê¤¤¤Î¤Ë %%endif ¤¬¤¢¤ê¤Þ¤¹" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "¤ª¤«¤·¤Ê %%include ¥¹¥Æ¡¼¥È¥á¥ó¥È¤Ç¤¹" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "ºîÀ®(build)²Äǽ¤Ê¥¢¡¼¥­¥Æ¥¯¥Á¥ã¤Ï¤¢¤ê¤Þ¤»¤ó" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "¥Ñ¥Ã¥±¡¼¥¸¤Ë¤Ï %%description ¤¬¤¢¤ê¤Þ¤»¤ó: %s" @@ -3229,40 +3229,40 @@ msgstr "%s msgid "removed db environment %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¥â¡¼¥É 0x%x ¤Î¥ª¡¼¥×¥ó (%s)\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "¥Ç¡¼¥¿¥Ù¡¼¥¹¤Î %s ¤ò¥í¥Ã¥¯¤Ç¤­¤Þ¤»¤ó" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "½ü³°" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "¶¦Í­" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "%s ÍѤΠfile ¥¤¥ó¥Ç¥Ã¥¯¥¹¤òºï½ü¤·¤Þ¤¹\n" diff --git a/po/ko.po b/po/ko.po index 31968e6..60973bd 100644 --- a/po/ko.po +++ b/po/ko.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.4\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2002-03-04 17:17+0900\n" "Last-Translator: Jong-Hoon Ryu \n" "Language-Team: GNU Translation project \n" @@ -886,7 +886,7 @@ msgstr "%d msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "%d ¹ø° Çà: %s¿¡ ºÎÀûÇÕÇÑ ¹®ÀÚ '-' °¡ ÀÖÀ½: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot¸¦ \"/\" ·Î ÁöÁ¤ÇÒ ¼ö ¾øÀ½: %s\n" @@ -1052,47 +1052,47 @@ msgstr "%d msgid "line %d: Second %s\n" msgstr "%d ¹ø° Çà: µÎ¹ø° %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "%d ¹ø° Çà: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "%s(À»)¸¦ ¿­ ¼ö ¾øÀ½: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "%%if°¡ ´ÝÈ÷Áö ¾Ê¾Ò½À´Ï´Ù\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean¿¡¼­ %d °ªÀÌ ¹ÝȯµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else°¡ %%if ¾øÀÌ »ç¿ëµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif°¡ %%if ¾øÀÌ »ç¿ëµÇ¾ú½À´Ï´Ù\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "%%include ¹®ÀÌ ¿Ã¹Ù¸£Áö ¾Ê½À´Ï´Ù\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "ÆÐÅ°Áö Á¦ÀÛ¿¡ ȣȯÇÏ´Â ¾ÆÅ°ÅØÃĸ¦ ãÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "ÆÐÅ°Áö¿¡ %%descriptionÀÌ ¾øÀ½: %s\n" @@ -3114,40 +3114,40 @@ msgstr " msgid "removed db environment %s/%s\n" msgstr "»èÁ¦µÈ db ȯ°æ %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "¿©´ÂÁß db ȯ°æ %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "´ÝÈù db À妽º %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "°ËÁõµÈ db À妽º %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "¿©´ÂÁß db À妽º %s/%s %s ¸ðµå=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "%2$s/%3$sÀÇ Àá±ÝµÈ(lock) %1$s(À»)¸¦ ¾òÀ» ¼ö ¾ø½À´Ï´Ù\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "Æó¼âÀû(exclusive)" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "°øÀ¯µÊ" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "Àá±ÝµÈ db À妽º %s/%s\n" diff --git a/po/no.po b/po/no.po index 441697c..5530c55 100644 --- a/po/no.po +++ b/po/no.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-06-27 12:24+0200\n" "Last-Translator: Kjartan Maraas \n" "Language-Team: Norwegian \n" @@ -890,7 +890,7 @@ msgstr "linje %d: Tom tagg: %s\n" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linje %d: Ugyldig tegn '-' i %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan ikke være \"/\": %s\n" @@ -1056,47 +1056,47 @@ msgstr "linje %d: skriptprogram m msgid "line %d: Second %s\n" msgstr "linje %d: Andre %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "linje %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "Kan ikke åpne %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "Åpen %%if\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerer %d\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else uten %%if\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif uten %%if\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "ugyldig %%include utsagn\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "Ingen kompatible arkitekturer funnet for bygging\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "Pakken har ingen %%description: %s\n" @@ -3092,40 +3092,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 1d160d2..325b819 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 1999-05-25 17:00+0100\n" "Last-Translator: Pawe³ Dziekoñski \n" "Language-Team: Polish \n" @@ -913,7 +913,7 @@ msgstr "linia %d: Pusta etykieta: %s" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "linia %d: Nielegalny znak '-' w %s: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "linia %d: wpis BuildRoot nie mo¿e byæ \"/\": %s" @@ -1080,48 +1080,48 @@ msgstr "linia %d: skrypt (tu jako program) musi si msgid "line %d: Second %s\n" msgstr "linia %d: Drugi %s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "linia %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "Nie mo¿na otworzyæ: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Niedomkniête %%if" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Napotkano %%else bez if" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Napotkano %%endif bez if" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "b³ednie sformatowany wpis %%include" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Nie mo¿na budowaæ na takie architektury" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Pakiet nie ma %%description: %s" @@ -3183,40 +3183,40 @@ msgstr "usuwanie indeksu plik msgid "removed db environment %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "otwiernie bazê danych w trybie 0x%x w %s\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "utworzenie blokady %s na bazie danych nie jest mo¿liwe" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "usuwanie indeksu plików dla %s\n" diff --git a/po/pt.po b/po/pt.po index eca8027..6c32d2f 100644 --- a/po/pt.po +++ b/po/pt.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2002-02-14 10:51+0000\n" "Last-Translator: José Nuno Coelho Sanarra Pires \n" "Language-Team: pt \n" "Language-Team: Romanian \n" @@ -872,7 +872,7 @@ msgstr "" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1036,47 +1036,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -3030,40 +3030,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/rpm.pot b/po/rpm.pot index fd039ab..91dcc2e 100644 --- a/po/rpm.pot +++ b/po/rpm.pot @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -878,7 +878,7 @@ msgstr "" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1042,47 +1042,47 @@ msgstr "" msgid "line %d: Second %s\n" msgstr "" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "" @@ -3036,40 +3036,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "" diff --git a/po/ru.po b/po/ru.po index 6add0c7..a81fd8c 100644 --- a/po/ru.po +++ b/po/ru.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2002-08-27 13:36-0400\n" "Last-Translator: Eugene Kanter, \n" "Language-Team: Black Cat Linux Team \n" @@ -895,7 +895,7 @@ msgstr " msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "ÓÔÒÏËÁ %d: îÅÄÏÐÕÓÔÉÍÙÊ ÓÉÍ×ÏÌ '-' × %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot ÎÅ ÍÏÖÅÔ ÂÙÔØ \"/\": %s\n" @@ -1061,47 +1061,47 @@ msgstr " msgid "line %d: Second %s\n" msgstr "ÓÔÒÏËÁ %d: ÷ÔÏÒÏÅ %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "ÓÔÒÏËÁ %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "îÅ×ÏÚÍÏÖÎÏ ÏÔËÒÙÔØ %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "îÅÚÁËÒÙÔÙÊ %%if\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean ËÏÄ ×ÏÚ×ÒÁÔÁ: %d\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: îÁÊÄÅÎ %%else ÂÅÚ %%if\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: îÁÊÄÅÎ %%endif ÂÅÚ %%if\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "ÎÅ×ÅÒÎÏÅ ÏÂßÑ×ÌÅÎÉÅ %%include\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "îÅ ÎÁÊÄÅÎÙ ÓÏ×ÍÅÓÔÉÍÙÅ ÁÒÈÉÔÅËÔÕÒÙ ÄÌÑ ÓÂÏÒËÉ.\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "ðÁËÅÔ ÎÅ ÉÍÅÅÔ %%description: %s\n" @@ -3081,40 +3081,40 @@ msgstr " msgid "removed db environment %s/%s\n" msgstr "ÕÄÁÌÅÎÏ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÏËÒÕÖÅÎÉÅ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "ÚÁËÒÙÔ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "ÐÒÏ×ÅÒÅÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "ÏÔËÒÙ×ÁÅÔÓÑ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s %s mode=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ÎÅ×ÏÚÍÏÖÎÏ ÐÏÌÕÞÉÔØ ÂÌÏËÉÒÏ×ËÕ %s ÎÁ %s/%s\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "ÉÓËÌÀÞÉÔÅÌØÎÙÊ" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "ÒÁÚÄÅÌÑÅÍÙÊ" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "ÚÁÂÌÏËÉÒÏ×ÁÎ ÉÎÄÅËÓ ÂÁÚÙ ÄÁÎÎÙÈ %s/%s\n" diff --git a/po/sk.po b/po/sk.po index ebec99e..6af414d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 1999-04-08 21:37+02:00\n" "Last-Translator: Stanislav Meduna \n" "Language-Team: Slovak \n" @@ -910,7 +910,7 @@ msgstr "riadok %d: Pr msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "riadok %d: Neprípustný znak '-' v %s: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "riadok %d: BuildRoot nemô¾e by» \"/\": %s" @@ -1076,48 +1076,48 @@ msgstr "riadok %d: program skriptu mus msgid "line %d: Second %s\n" msgstr "riadok %d: Druhý %s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "riadok %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "otvorenie zlyhalo: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Neuzavretý %%if" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%else bez if" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%endif bez if" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "znetvorený príkaz %%include" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "®iadne zostaviteµné architektúry" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "Balík neobsahuje %%description: %s" @@ -3179,40 +3179,40 @@ msgstr "odstra msgid "removed db environment %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "otvára sa databáza s právami 0x%x v %s\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "nie je mo¾né získa» %s zámok pre databázu" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "výhradný" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "zdieµaný" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "odstraòuje sa index súborov pre %s\n" diff --git a/po/sl.po b/po/sl.po index f8d8815..b84c431 100644 --- a/po/sl.po +++ b/po/sl.po @@ -1,12 +1,12 @@ # -*- mode:po; coding:iso-latin-2; -*- Slovenian messages for Redhat pkg. mngr. # Copyright (C) 2000 Free Software Foundation, Inc. # Primo¾ Peterlin , 2000. -# $Id: sl.po,v 1.344 2002/12/22 02:11:19 jbj Exp $ +# $Id: sl.po,v 1.345 2002/12/23 20:59:03 jbj Exp $ # msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2000-10-08 19:05+0200\n" "Last-Translator: Grega Fajdiga \n" "Language-Team: Slovenian \n" @@ -909,7 +909,7 @@ msgstr "vrstica %d: Prazna zna msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "vrstica %d: Neveljaven znak ,-` v %s: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, fuzzy, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot ne more biti \"/\": %s" @@ -1077,48 +1077,48 @@ msgstr "vrstica %d: skriptni program se mora za msgid "line %d: Second %s\n" msgstr "vrstica %d: Drugi %s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "vrstica %d: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "Ni mo¾no odpreti %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, fuzzy, c-format msgid "Unclosed %%if\n" msgstr "Nezakljuèeni %%if" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, fuzzy, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean vrne %d" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, fuzzy, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Najden je bil %%else brez pripadajoèega if" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, fuzzy, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Najden je bil %%endif brez pripadajoèega if" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, fuzzy, c-format msgid "malformed %%include statement\n" msgstr "Deformiran stavek %%include" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "Arhitektura za izgradnjo ni prisotna" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "V paketu manjka %%description: %s" @@ -3182,40 +3182,40 @@ msgstr "zaprto db okolje %s/%s\n" msgid "removed db environment %s/%s\n" msgstr "odstranjeno db okolje %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "odpiranje db okolja %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "zaprto db kazalo %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "zaprto db kazalo %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "odpiranje db kazala %s/%s %s naèin=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ni mo¾no zakleniti z %s datotek %s/%s\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "izkljuèujoèe" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "skupno" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "zaklenjeno db kazalo %s/%s\n" diff --git a/po/sr.po b/po/sr.po index 8bd197e..a79adf7 100644 --- a/po/sr.po +++ b/po/sr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-2\n" "Content-Transfer-Encoding: 8bit\n" @@ -899,7 +899,7 @@ msgstr "neuspelo otvaranje %s: %s" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "" @@ -1063,48 +1063,48 @@ msgstr "preme msgid "line %d: Second %s\n" msgstr "neuspelo otvaranje %s: %s" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, fuzzy, c-format msgid "line %d: %s\n" msgstr "neuspelo otvaranje %s: %s" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, fuzzy, c-format msgid "Unable to open %s: %s\n" msgstr "neuspelo otvaranje %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 #, fuzzy msgid "No compatible architectures found for build\n" msgstr "nemoj proveravati arhitekturu paketa" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, fuzzy, c-format msgid "Package has no %%description: %s\n" msgstr "paket %s nije naveden u %s" @@ -3171,40 +3171,40 @@ msgstr "" msgid "removed db environment %s/%s\n" msgstr "" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, fuzzy, c-format msgid "opening db environment %s/%s %s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, fuzzy, c-format msgid "closed db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, fuzzy, c-format msgid "verified db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, fuzzy, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, fuzzy, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "ne mogu da dobijem %s zakljuèavanje baze podataka" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "ekskluzivno" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "deljeno" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, fuzzy, c-format msgid "locked db index %s/%s\n" msgstr "rekreiraj bazu podataka iz postojeæe baze" diff --git a/po/sv.po b/po/sv.po index 5598928..71d3ea4 100644 --- a/po/sv.po +++ b/po/sv.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.1\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2002-08-19 22:26+0200\n" "Last-Translator: Göran Uddeborg \n" "Language-Team: Swedish \n" @@ -887,7 +887,7 @@ msgstr "rad %d: Tom tagg: %s\n" msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "rad %d: Otillåtet tecken \"-\" i %s: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot kan inte vara \"/\": %s\n" @@ -1052,47 +1052,47 @@ msgstr "rad %d: skriptprogram m msgid "line %d: Second %s\n" msgstr "rad %d: En andra %s\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "rad %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "Kan inte öppna %s: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "Oavslutat %%if\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean returnerar %d\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: Fick ett %%else utan något %%if\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: Fick ett %%endif utan något %%if\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "felformaterad %%include-sats\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "Hittade inga kompatibla arkitekturer att bygga\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paketet har ingen %%description: %s\n" @@ -3065,40 +3065,40 @@ msgstr "st msgid "removed db environment %s/%s\n" msgstr "tog bort db-miljö %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "öppnar db-miljö %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "stängde db-index %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "verifierade db-index %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "öppnar db-index %s/%s %s rättighet=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "kan inte få %s lås på %s/%s\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "uteslutande" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "delat" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "låste db-index %s/%s\n" diff --git a/po/tr.po b/po/tr.po index 8462f43..e454c15 100644 --- a/po/tr.po +++ b/po/tr.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: rpm 4.0.3\n" -"POT-Creation-Date: 2002-12-21 21:09-0500\n" +"POT-Creation-Date: 2002-12-23 15:42-0500\n" "PO-Revision-Date: 2001-07-05 08:02+300\n" "Last-Translator: Nilgun Belma Buguner \n" "Language-Team: Turkish \n" @@ -901,7 +901,7 @@ msgstr "sat msgid "line %d: Illegal char '-' in %s: %s\n" msgstr "satýr %d: %s içinde '-' karakteri kuraldýþý: %s\n" -#: build/parsePreamble.c:588 build/parseSpec.c:425 +#: build/parsePreamble.c:588 build/parseSpec.c:426 #, c-format msgid "BuildRoot can not be \"/\": %s\n" msgstr "BuildRoot \"/\" olamaz: %s\n" @@ -1067,47 +1067,47 @@ msgstr "sat msgid "line %d: Second %s\n" msgstr "satýr %d: %s saniye\n" -#: build/parseSpec.c:159 +#: build/parseSpec.c:160 #, c-format msgid "line %d: %s\n" msgstr "satýr %d: %s\n" #. XXX Fstrerror -#: build/parseSpec.c:211 +#: build/parseSpec.c:212 #, c-format msgid "Unable to open %s: %s\n" msgstr "%s açýlamadý: %s\n" -#: build/parseSpec.c:227 +#: build/parseSpec.c:228 #, c-format msgid "Unclosed %%if\n" msgstr "%%if kapanmamýþ\n" -#: build/parseSpec.c:299 +#: build/parseSpec.c:300 #, c-format msgid "%s:%d: parseExpressionBoolean returns %d\n" msgstr "%s:%d: parseExpressionBoolean %d ile döner\n" -#: build/parseSpec.c:308 +#: build/parseSpec.c:309 #, c-format msgid "%s:%d: Got a %%else with no %%if\n" msgstr "%s:%d: %%if'siz bir %%else alýndý\n" -#: build/parseSpec.c:320 +#: build/parseSpec.c:321 #, c-format msgid "%s:%d: Got a %%endif with no %%if\n" msgstr "%s:%d: %%if'siz bir %%endif alýndý\n" -#: build/parseSpec.c:334 build/parseSpec.c:343 +#: build/parseSpec.c:335 build/parseSpec.c:344 #, c-format msgid "malformed %%include statement\n" msgstr "%%include deyimi bozuk\n" -#: build/parseSpec.c:543 +#: build/parseSpec.c:544 msgid "No compatible architectures found for build\n" msgstr "Kurgulamak için uyumlu mimari yok\n" -#: build/parseSpec.c:601 +#: build/parseSpec.c:602 #, c-format msgid "Package has no %%description: %s\n" msgstr "Paket %%description içermiyor: %s\n" @@ -3137,40 +3137,40 @@ msgstr "kapand msgid "removed db environment %s/%s\n" msgstr "silindi db ortamý %s/%s\n" -#: rpmdb/db3.c:287 +#: rpmdb/db3.c:291 #, c-format msgid "opening db environment %s/%s %s\n" msgstr "açýlýyor db ortamý %s/%s %s\n" -#: rpmdb/db3.c:769 +#: rpmdb/db3.c:764 #, c-format msgid "closed db index %s/%s\n" msgstr "kapandý db endeks %s/%s\n" -#: rpmdb/db3.c:836 +#: rpmdb/db3.c:831 #, c-format msgid "verified db index %s/%s\n" msgstr "doðrulandý db endeks %s/%s\n" -#: rpmdb/db3.c:1066 +#: rpmdb/db3.c:1069 #, c-format msgid "opening db index %s/%s %s mode=0x%x\n" msgstr "açýlýyor db endeks %s/%s %s kip=0x%x\n" -#: rpmdb/db3.c:1303 +#: rpmdb/db3.c:1306 #, c-format msgid "cannot get %s lock on %s/%s\n" msgstr "%s kilit %s/%s'den alýnamadý\n" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "exclusive" msgstr "baðdaþýk" -#: rpmdb/db3.c:1305 +#: rpmdb/db3.c:1308 msgid "shared" msgstr "paylaþýmlý" -#: rpmdb/db3.c:1309 +#: rpmdb/db3.c:1312 #, c-format msgid "locked db index %s/%s\n" msgstr "kilitli db endeks %s/%s\n" diff --git a/rpmdb/db3.c b/rpmdb/db3.c index 604e635..86005d7 100644 --- a/rpmdb/db3.c +++ b/rpmdb/db3.c @@ -191,13 +191,13 @@ static int db_fini(dbiIndex dbi, const char * dbhome, /*@-moduncon@*/ /* FIX: annotate db3 methods */ xx = db_env_create(&dbenv, 0); /*@=moduncon@*/ - xx = cvtdberr(dbi, "db_env_create", rc, _debug); + xx = cvtdberr(dbi, "db_env_create", xx, _debug); #if (DB_VERSION_MAJOR == 3 && DB_VERSION_MINOR != 0) || (DB_VERSION_MAJOR == 4) xx = dbenv->remove(dbenv, dbhome, 0); #else xx = dbenv->remove(dbenv, dbhome, NULL, 0); #endif - xx = cvtdberr(dbi, "dbenv->remove", rc, _debug); + xx = cvtdberr(dbi, "dbenv->remove", xx, _debug); if (dbfile) rpmMessage(RPMMESS_DEBUG, _("removed db environment %s/%s\n"), @@ -218,6 +218,10 @@ static int db3_fsync_disable(/*@unused@*/ int fd) #include #endif +/** + * Check that posix mutexes are shared. + * @return 0 == shared. + */ static int db3_pthread_nptl(void) /*@*/ { @@ -291,12 +295,6 @@ static int db_init(dbiIndex dbi, const char * dbhome, if (dbi->dbi_host == NULL) dbi->dbi_ecflags &= ~DB_CLIENT; -#if HAVE_LIBPTHREAD - /* XXX Set DB_ENV_PRIVATE if not nptl. */ - if (db3_pthread_nptl()) - dbi->dbi_ecflags |= DB_ENV_PRIVATE; -#endif - /* XXX Set a default shm_key. */ if ((dbi->dbi_eflags & DB_SYSTEM_MEM) && dbi->dbi_shmkey == 0) { #if defined(HAVE_FTOK) @@ -308,12 +306,9 @@ static int db_init(dbiIndex dbi, const char * dbhome, rc = db_env_create(&dbenv, dbi->dbi_ecflags); rc = cvtdberr(dbi, "db_env_create", rc, _debug); - if (rc) + if (dbenv == NULL || rc) goto errxit; - if (dbenv == NULL) - return 1; - { int xx; /*@-noeffectuncon@*/ /* FIX: annotate db3 methods */ @@ -407,7 +402,7 @@ static int db_init(dbiIndex dbi, const char * dbhome, tmpdir = rpmGenPath(root, dbi->dbi_tmpdir, NULL); /*@=mods@*/ xx = dbenv->set_tmp_dir(dbenv, tmpdir); - xx = cvtdberr(dbi, "dbenv->set_tmp_dir", rc, _debug); + xx = cvtdberr(dbi, "dbenv->set_tmp_dir", xx, _debug); tmpdir = _free(tmpdir); } } @@ -964,6 +959,14 @@ static int db3open(rpmdb rpmdb, rpmTag rpmtag, dbiIndex * dbip) * Avoid incompatible DB_CREATE/DB_RDONLY flags on DBENV->open. */ if (dbi->dbi_use_dbenv) { + +#if HAVE_LIBPTHREAD + /* Set DB_PRIVATE if posix mutexes are not shared. */ + if (db3_pthread_nptl()) { + dbi->dbi_eflags |= DB_PRIVATE; + } +#endif + if (access(dbhome, W_OK) == -1) { /* dbhome is unwritable, don't attempt DB_CREATE on DB->open ... */ @@ -1297,7 +1300,7 @@ static int db3open(rpmdb rpmdb, rpmTag rpmtag, dbiIndex * dbip) /* Warning iff using non-private CDB locking. */ rc = ((dbi->dbi_use_dbenv && (dbi->dbi_eflags & DB_INIT_CDB) && - !(dbi->dbi_ecflags & DB_ENV_PRIVATE)) + !(dbi->dbi_eflags & DB_PRIVATE)) ? 0 : 1); rpmError( (rc ? RPMERR_FLOCK : RPMWARN_FLOCK), _("cannot get %s lock on %s/%s\n"),