[Pkg-freeipa-devel] certmonger: Changes to 'debian-unstable'

Timo Aaltonen tjaalton-guest at alioth.debian.org
Wed Mar 21 21:45:32 UTC 2012


 Makefile.am                     |    1 
 certmonger.spec                 |   39 
 configure.ac                    |    2 
 dbus/certmonger.conf.in         |    2 
 debian/certmonger.postrm        |   37 
 debian/changelog                |    2 
 debian/control                  |    2 
 doc/api.txt                     |   98 
 doc/design.txt                  |   20 
 po/bg.po                        |  373 +--
 po/bn_IN.po                     |  333 +--
 po/certmonger.pot               |  333 +--
 po/cs_CZ.po                     |  335 +--
 po/da.po                        |  335 +--
 po/de.po                        |  333 +--
 po/es.po                        |  356 +--
 po/es_ES.po                     |  331 +--
 po/fr.po                        |  353 +--
 po/gu.po                        |  333 +--
 po/id.po                        |  333 +--
 po/ja.po                        |  341 +--
 po/nl.po                        |  340 +--
 po/pl.po                        |  338 +--
 po/pt.po                        |  353 +--
 po/pt_BR.po                     |  337 +--
 po/ru.po                        |  333 +--
 po/sv.po                        |  354 +--
 po/ta.po                        |  333 +--
 po/tr.po                        |  335 +--
 po/uk.po                        |  335 +--
 po/zh_CN.po                     |  357 +--
 po/zh_TW.po                     |  333 +--
 src/Makefile.am                 |    2 
 src/certext.c                   |   38 
 src/certread-n.c                |    4 
 src/cm.c                        |   19 
 src/cm.h                        |    3 
 src/csrgen.c                    |    4 
 src/env-session.c               |   38 
 src/getcert-request.1.in        |    4 
 src/getcert-resubmit.1.in       |    4 
 src/getcert-start-tracking.1.in |    4 
 src/getcert.c                   |  231 +-
 src/iterate.c                   |   67 
 src/iterate.h                   |    5 
 src/keyiread-n.c                |   19 
 src/keyiread-o.c                |   21 
 src/keyiread.c                  |   13 
 src/main.c                      |   29 
 src/notify.c                    |    4 
 src/postsave.c                  |  164 +
 src/postsave.h                  |   41 
 src/prefs.c                     |   15 
 src/store-files.c               |  249 +-
 src/store-gen.c                 |   37 
 src/store-int.h                 |   10 
 src/store.h                     |   12 
 src/submit-d.c                  |    2 
 src/submit-x.c                  |    2 
 src/tdbus.c                     |   40 
 src/tdbus.h                     |   47 
 src/tdbush.c                    | 4257 ++++++++++++++++++++++++++++++++++------
 src/tdbush.h                    |   17 
 src/tdbusm-check.c              |  106 
 src/tdbusm.c                    |  415 +++
 src/tdbusm.h                    |   17 
 systemd/Makefile.am             |    3 
 systemd/certmonger.path.in      |    1 
 systemd/certmonger.service.in   |    1 
 tests/001-keyiread/run.sh       |    8 
 tests/005-dbusm/expected.out    |   32 
 tests/tools/Makefile.am         |    2 
 tests/tools/iterate.c           |    2 
 tests/tools/notty.c             |    8 
 74 files changed, 9356 insertions(+), 4681 deletions(-)

New commits:
commit 0a491a19af71d082f80b8168358012f9a6dfc099
Author: Timo Aaltonen <tjaalton at ubuntu.com>
Date:   Wed Mar 21 23:40:30 2012 +0200

    bump the standards-version, no changes

diff --git a/debian/control b/debian/control
index c7077ef..9e3aa67 100644
--- a/debian/control
+++ b/debian/control
@@ -15,7 +15,7 @@ Build-Depends: debhelper (>= 8), dh-autoreconf, autopoint, quilt, lsb-release,
  libnss3-tools,
  dbus-x11,
  dos2unix,
-Standards-Version: 3.9.2
+Standards-Version: 3.9.3
 Homepage: https://fedorahosted.org/certmonger/
 Vcs-Git: git://git.debian.org/pkg-freeipa/certmonger.git
 Vcs-Browser: http://git.debian.org/?p=pkg-freeipa/certmonger.git;a=summary

commit 5d9e82d8bf4947c8bdc6440717bbfba66d9d8735
Author: Timo Aaltonen <tjaalton at ubuntu.com>
Date:   Wed Mar 21 23:38:18 2012 +0200

    remove empty postrm

diff --git a/debian/certmonger.postrm b/debian/certmonger.postrm
deleted file mode 100644
index 51f9c13..0000000
--- a/debian/certmonger.postrm
+++ /dev/null
@@ -1,37 +0,0 @@
-#!/bin/sh
-# postrm script for certmonger
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <overwriter>
-#          <overwriter-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-    purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-    ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0

commit d48477b8a0bf6e28ab0911710dc5768ed421a626
Author: Timo Aaltonen <tjaalton at ubuntu.com>
Date:   Wed Mar 21 23:21:33 2012 +0200

    bump the version

diff --git a/debian/changelog b/debian/changelog
index 760af8c..355f6af 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,4 @@
-certmonger (0.52-1) UNRELEASED; urgency=low
+certmonger (0.56-1) UNRELEASED; urgency=low
 
   * Initial release (Closes: #644367)
 

commit 379ca2c29f03334ded788b937b4530178c53ad72
Author: Nalin Dahyabhai <nalin at dahyabhai.net>
Date:   Sat Mar 3 00:34:02 2012 -0500

    - tag 0.56

diff --git a/certmonger.spec b/certmonger.spec
index 5c95513..5c3808c 100644
--- a/certmonger.spec
+++ b/certmonger.spec
@@ -19,7 +19,7 @@
 %endif
 
 Name:		certmonger
-Version:	0.55
+Version:	0.56
 Release:	1%{?dist}
 Summary:	Certificate status monitor and PKI enrollment client
 
@@ -194,6 +194,17 @@ exit 0
 %endif
 
 %changelog
+* Sat Mar  3 2012 Nalin Dahyabhai <nalin at redhat.com> 0.56-1
+- when a caller sets the is-default flag on a CA, and another CA is no longer
+  the default, emit the PropertiesChanged signal on the CA which is not the
+  default, instead on the new default a second time
+- drop some dead code from the D-Bus message handlers (static analysis,
+  #796813)
+- cache public keys when we read private keys
+- go back to printing an error indicating that we're missing a required
+  argument when we're missing a required argument, not that the option is
+  invalid (broken since 0.51, #796542)
+
 * Wed Feb 16 2012 Nalin Dahyabhai <nalin at redhat.com> 0.55-1
 - allow root to use our implementation of org.freedesktop.DBus.Properties
 - take more care to not emit useless PropertiesChanged signals
diff --git a/configure.ac b/configure.ac
index 3228786..ab20ac0 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(certmonger,0.55)
+AC_INIT(certmonger,0.56)
 AM_INIT_AUTOMAKE([foreign])
 AC_CONFIG_MACRO_DIR(m4)
 AM_MAINTAINER_MODE
diff --git a/po/bg.po b/po/bg.po
index a4a5112..9c868c5 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -9,9 +9,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: certmonger\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
-"PO-Revision-Date: 2012-02-15 08:23+0000\n"
-"Last-Translator: Valentin Laskov <laskov at festa.bg>\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
+"PO-Revision-Date: 2012-02-24 19:28+0000\n"
+"Last-Translator: Nalin Dahyabhai <nalin at fedoraproject.org>\n"
 "Language-Team: Bulgarian <trans-bg at lists.fedoraproject.org>\n"
 "Language: bg\n"
 "MIME-Version: 1.0\n"
@@ -792,96 +792,96 @@ msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr ""
 "Грешка при задаването на ccache за \"%s\", използвайки keytab \"%s\".\n"
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr "Възникна вътрешна грешка."
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr "Не бяха намерени такива записи.\n"
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr "Вече има CA с псевдонима \"%s\"."
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr "Не е определен тип на хранилището на сертификати."
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr "Не се поддържа хранилище на сертификати от тип \"%s\"."
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr "Местоположението \"%s\" трябва да е абсолютен път."
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr "Местоположението на хранилището на сертификати не е определено."
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr "Частта преди местоположението \"%s\" трябва да е валидна директория."
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr "Местоположението \"%s\" трябва да е файл."
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr "Местоположението \"%s\" трябва да е директория."
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr "Псевдонимът на сертификата не е определен."
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr "Вече има заявка с псевдонима \"%s\"."
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 "Сертификатът на зададеното място вече се използва  от друг псевдоним \"%s\"."
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr "Не се поддържа хранилище на ключове от тип \"%s\"."
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr "Местоположението на хранилището на ключове не е определено."
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr "Псевдонимът на ключа не е определен."
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr "Ключът на зададеното място вече се използва от друг псевдоним \"%s\"."
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr "Няма такъв CA."
 
-#: src/tdbush.c:2202
+#: src/tdbush.c:2254
 #, c-format
 msgid "Certificate authority \"%s\" not known."
 msgstr "Сертифициращият орган \"%s\" е непознат."
 
-#: src/tdbush.c:2383
+#: src/tdbush.c:2435
 msgid "Unrecognized parameter or wrong value type."
 msgstr "Неразпознат параметър или грешен тип на стойност."
diff --git a/po/bn_IN.po b/po/bn_IN.po
index 90f671d..e3e1333 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -7,8 +7,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: certmonger\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
-"PO-Revision-Date: 2012-02-15 08:23+0000\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
+"PO-Revision-Date: 2012-02-24 19:28+0000\n"
 "Last-Translator: Nalin Dahyabhai <nalin at fedoraproject.org>\n"
 "Language-Team: Bengali (India) <anubad at lists.ankur.org.in>\n"
 "Language: bn_IN\n"
@@ -746,95 +746,95 @@ msgstr ""
 msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr ""
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr ""
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr ""
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr ""
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr ""
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr ""
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr ""
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr ""
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr ""
 
-#: src/tdbush.c:2202
+#: src/tdbush.c:2254
 #, c-format
 msgid "Certificate authority \"%s\" not known."
 msgstr ""
 
-#: src/tdbush.c:2383
+#: src/tdbush.c:2435
 msgid "Unrecognized parameter or wrong value type."
 msgstr ""
diff --git a/po/certmonger.pot b/po/certmonger.pot
index 23a2984..3323d21 100644
--- a/po/certmonger.pot
+++ b/po/certmonger.pot
@@ -6,9 +6,9 @@
 #, fuzzy
 msgid ""
 msgstr ""
-"Project-Id-Version: certmonger 0.55\n"
+"Project-Id-Version: certmonger 0.56\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -746,95 +746,95 @@ msgstr ""
 msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr ""
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr ""
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr ""
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr ""
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr ""
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr ""
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr ""
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr ""
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr ""
 
-#: src/tdbush.c:2202
+#: src/tdbush.c:2254
 #, c-format
 msgid "Certificate authority \"%s\" not known."
 msgstr ""
 
-#: src/tdbush.c:2383
+#: src/tdbush.c:2435
 msgid "Unrecognized parameter or wrong value type."
 msgstr ""
diff --git a/po/cs_CZ.po b/po/cs_CZ.po
index 3496249..7317e53 100644
--- a/po/cs_CZ.po
+++ b/po/cs_CZ.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: certmonger\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
-"PO-Revision-Date: 2012-02-15 08:23+0000\n"
-"Last-Translator: Milan Kerslager <milan.kerslager at pslib.cz>\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
+"PO-Revision-Date: 2012-02-24 19:28+0000\n"
+"Last-Translator: Nalin Dahyabhai <nalin at fedoraproject.org>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
 "Language: cs_CZ\n"
 "MIME-Version: 1.0\n"
@@ -747,95 +747,95 @@ msgstr ""
 msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr ""
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr ""
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr ""
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr ""
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr ""
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr ""
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr ""
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr ""
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr ""
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr ""
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr ""
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr ""
 
-#: src/tdbush.c:2202
+#: src/tdbush.c:2254
 #, c-format
 msgid "Certificate authority \"%s\" not known."
 msgstr ""
 
-#: src/tdbush.c:2383
+#: src/tdbush.c:2435
 msgid "Unrecognized parameter or wrong value type."
 msgstr ""
diff --git a/po/da.po b/po/da.po
index 4ee2ad6..dd3d09f 100644
--- a/po/da.po
+++ b/po/da.po
@@ -8,9 +8,9 @@ msgid ""
 msgstr ""
 "Project-Id-Version: certmonger\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
-"PO-Revision-Date: 2012-02-15 08:23+0000\n"
-"Last-Translator: Kris Thomsen <lakristho at gmail.com>\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
+"PO-Revision-Date: 2012-02-24 19:28+0000\n"
+"Last-Translator: Nalin Dahyabhai <nalin at fedoraproject.org>\n"
 "Language-Team: Danish <dansk at dansk-gruppen.dk>\n"
 "Language: da\n"
 "MIME-Version: 1.0\n"
@@ -773,95 +773,95 @@ msgstr ""
 msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr "Fejl under opsætning af ccache for \"%s\" med brug af tast \"%s\".\n"
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr "Der opstod en intern fejl."
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr "Intet matchende element fundet.\n"
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr "Der er allerede en CA med kaldenavnet \"%s\"."
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr "Certifikatslagringstype er ikke angivet."
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr "Certifikatslagringstype \"%s\" er ikke understøttet."
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr "Placeringen \"%s\" skal være en absolut sti."
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr "Certifikatslagringsplacering er ikke angivet."
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr "Placeringen over \"%s\" skal være en gyldig mappe."
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr "Placeringen \"%s\" skal være en fil."
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr "Placeringen \"%s\" skal være en mappe."
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr "Certifikatkaldenavn ikke angivet."
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr "Der er allerede en forespørgsel med kaldenavnet \"%s\"."
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr "Nøglelagringstype \"%s\" er ikke understøttet."
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr "Nøglelagringsplacering er ikke angivet."
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr "Nøglekaldenavn er ikke angivet."
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr "Ingen sådan CA."
 
-#: src/tdbush.c:2202
+#: src/tdbush.c:2254
 #, c-format
 msgid "Certificate authority \"%s\" not known."
 msgstr "Certifikatsautoritet \"%s\" er ikke kendt."
 
-#: src/tdbush.c:2383
+#: src/tdbush.c:2435
 msgid "Unrecognized parameter or wrong value type."
 msgstr "Ikke opdaget parameter eller forkert værditype."
diff --git a/po/de.po b/po/de.po
index df5f8ce..e44382e 100644
--- a/po/de.po
+++ b/po/de.po
@@ -9,8 +9,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: certmonger\n"
 "Report-Msgid-Bugs-To: certmonger-devel at lists.fedorahosted.org\n"
-"POT-Creation-Date: 2012-02-24 14:26-0500\n"
-"PO-Revision-Date: 2012-02-15 08:23+0000\n"
+"POT-Creation-Date: 2012-03-03 00:33-0500\n"
+"PO-Revision-Date: 2012-02-24 19:28+0000\n"
 "Last-Translator: Nalin Dahyabhai <nalin at fedoraproject.org>\n"
 "Language-Team: German <trans-de at lists.fedoraproject.org>\n"
 "Language: de\n"
@@ -767,95 +767,95 @@ msgstr ""
 msgid "Error setting up ccache for \"%s\" using keytab \"%s\".\n"
 msgstr ""
 
-#: src/tdbush.c:112 src/tdbush.c:1335 src/tdbush.c:1549
+#: src/tdbush.c:116 src/tdbush.c:1351 src/tdbush.c:1576
 msgid "An internal error has occurred."
 msgstr "Ein interner Fehler ist aufgetreten."
 
-#: src/tdbush.c:176
+#: src/tdbush.c:180
 msgid "No matching entry found.\n"
 msgstr "Kein passender Eintrag gefunden.\n"
 
-#: src/tdbush.c:315
+#: src/tdbush.c:321
 #, c-format
 msgid "There is already a CA with the nickname \"%s\"."
 msgstr "Es gibt bereits ein Zertifikat mit dem Kurznamen »%s«."
 
-#: src/tdbush.c:402
+#: src/tdbush.c:409
 msgid "Certificate storage type not specified."
 msgstr "Speichertyp des Zertifikats wurde nicht angegeben."
 
-#: src/tdbush.c:415
+#: src/tdbush.c:422
 #, c-format
 msgid "Certificate storage type \"%s\" not supported."
 msgstr "Speichertyp »%s« des Zertifikats wird nicht unterstützt."
 
-#: src/tdbush.c:452 src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:710
-#: src/tdbush.c:760 src/tdbush.c:2281
+#: src/tdbush.c:459 src/tdbush.c:493 src/tdbush.c:542 src/tdbush.c:717
+#: src/tdbush.c:767 src/tdbush.c:2333
 #, c-format
 msgid "The location \"%s\" must be an absolute path."
 msgstr "Der Ort »%s« muss ein absoluter Pfad sein."
 
-#: src/tdbush.c:479 src/tdbush.c:528 src/tdbush.c:586
+#: src/tdbush.c:486 src/tdbush.c:535 src/tdbush.c:593
 msgid "Certificate storage location not specified."
 msgstr "Speicherort für Zertifikat ist nicht angegeben."
 
-#: src/tdbush.c:496 src/tdbush.c:720
+#: src/tdbush.c:503 src/tdbush.c:727
 #, c-format
 msgid "The parent of location \"%s\" must be a valid directory."
 msgstr "Übergeordnete Ebene des Ortes »%s« muss ein gültiger Ordner sein."
 
-#: src/tdbush.c:506 src/tdbush.c:730
+#: src/tdbush.c:513 src/tdbush.c:737
 #, c-format
 msgid "The location \"%s\" must be a file."
 msgstr "Der Ort »%s« muss eine Datei sein."
 
-#: src/tdbush.c:545 src/tdbush.c:770
+#: src/tdbush.c:552 src/tdbush.c:777
 #, c-format
 msgid "The location \"%s\" must be a directory."
 msgstr "Der Ort »%s« muss ein Ordner sein."
 
-#: src/tdbush.c:564
+#: src/tdbush.c:571
 msgid "Certificate nickname not specified."
 msgstr "Kurzname des Zertifikats nicht angegeben."
 
-#: src/tdbush.c:607 src/tdbush.c:2184
+#: src/tdbush.c:614 src/tdbush.c:2236
 #, c-format
 msgid "There is already a request with the nickname \"%s\"."
 msgstr "Es gibt bereits eine Anfrage mit dem Kurznamen »%s«."
 
-#: src/tdbush.c:643
+#: src/tdbush.c:650
 #, c-format
 msgid ""
 "Certificate at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:676
+#: src/tdbush.c:683
 #, c-format
 msgid "Key storage type \"%s\" not supported."
 msgstr "Speichertyp »%s« für Schlüssel nicht unterstützt."
 
-#: src/tdbush.c:703 src/tdbush.c:753
+#: src/tdbush.c:710 src/tdbush.c:760
 msgid "Key storage location not specified."
 msgstr "Speicherort des Schlüssels wurde nicht angegeben."
 
-#: src/tdbush.c:789
+#: src/tdbush.c:796
 msgid "Key nickname not specified."
 msgstr "Kurzname des Schlüssels nicht angegeben."
 
-#: src/tdbush.c:845
+#: src/tdbush.c:852
 #, c-format
 msgid "Key at same location is already used by request with nickname \"%s\"."
 msgstr ""
 
-#: src/tdbush.c:925
+#: src/tdbush.c:932
 msgid "No such CA."
 msgstr "Keine solche Zertifizierungsstelle."



More information about the Pkg-freeipa-devel mailing list