gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-exchange] branch master updated (7bbb44ec -> f989f2a9)


From: gnunet
Subject: [taler-exchange] branch master updated (7bbb44ec -> f989f2a9)
Date: Thu, 21 Jan 2021 13:23:02 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a change to branch master
in repository exchange.

    from 7bbb44ec improve logging and comments in json.c
     new 99b3ed45 update log level
     new 2aa77fdd work around compiler warning, ensure we leave 0-terminator, 
even though it is not required by the kernel
     new f989f2a9 update Debian packages for exchange

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog                       | 10 ++++++++++
 debian/libtalerexchange-dev.install    |  1 +
 debian/libtalerexchange.install        |  5 +++++
 debian/taler-auditor.install           |  3 +++
 debian/taler-exchange.install          |  5 +++++
 src/json/json.c                        |  2 +-
 src/util/taler-exchange-secmod-eddsa.c |  2 +-
 src/util/taler-exchange-secmod-rsa.c   |  2 +-
 8 files changed, 27 insertions(+), 3 deletions(-)
 create mode 100644 debian/libtalerexchange-dev.install
 create mode 100644 debian/libtalerexchange.install

diff --git a/debian/changelog b/debian/changelog
index b4f8146f..50d791f2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+taler-exchange (0.9.0-3) unstable; urgency=medium
+
+  * Renamed helper/secmod binaries for consistency.
+  * Protocol improvements, removing unnecessary struct members.
+  * Fixed /management/keys caching logic and key revocation handling.
+  * Implemented taler-auditor-sync.
+  * Misc. other minor improvements.
+
+ -- Christian Grothoff <grothoff@gnu.org>  Thu, 21 Jan 2021 12:02:10 +0100
+
 taler-exchange (0.9.0-3) unstable; urgency=medium
 
   * Fix taler-exchange.postrm crash (prevented uninstall).
diff --git a/debian/libtalerexchange-dev.install 
b/debian/libtalerexchange-dev.install
new file mode 100644
index 00000000..fa4fdfdb
--- /dev/null
+++ b/debian/libtalerexchange-dev.install
@@ -0,0 +1 @@
+usr/include/taler/*
diff --git a/debian/libtalerexchange.install b/debian/libtalerexchange.install
new file mode 100644
index 00000000..0f6887d1
--- /dev/null
+++ b/debian/libtalerexchange.install
@@ -0,0 +1,5 @@
+usr/bin/taler-config
+usr/lib/*/libtaler*
+usr/share/taler/config.d/*
+usr/share/taler/sql/*
+usr/share/man/man5/taler.conf.5
diff --git a/debian/taler-auditor.install b/debian/taler-auditor.install
index 4511b257..b7e49408 100644
--- a/debian/taler-auditor.install
+++ b/debian/taler-auditor.install
@@ -3,6 +3,9 @@ usr/bin/taler-auditor-dbinit
 usr/bin/taler-auditor-exchange
 usr/bin/taler-auditor-httpd
 usr/bin/taler-auditor-offline
+usr/bin/taler-auditor-sync
 usr/bin/taler-helper-auditor-*
+usr/lib/*/libauditor*
 debian/etc/taler-auditor.conf etc/
 debian/auditor-conf/* etc/taler-auditor/
+usr/share/taler-exchange/auditor-report.tex.j2
diff --git a/debian/taler-exchange.install b/debian/taler-exchange.install
index add23672..05825d9a 100644
--- a/debian/taler-exchange.install
+++ b/debian/taler-exchange.install
@@ -1,4 +1,9 @@
 usr/bin/
 usr/lib/*/taler/*.so
+usr/share/man/man1/*
+usr/share/info/*
+usr/share/taler/sql/*
 debian/etc/* etc/
 debian/exchange-conf/* etc/taler-exchange/
+usr/share/taler-exchange/pp/*/*
+usr/share/taler-exchange/tos/*/*
diff --git a/src/json/json.c b/src/json/json.c
index 7e84ea25..b7afec8a 100644
--- a/src/json/json.c
+++ b/src/json/json.c
@@ -572,7 +572,7 @@ TALER_JSON_get_error_code (const json_t *json)
      so we are dealing with a missing error code here.  */
   if (NULL == jc)
   {
-    GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
+    GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
                 "Expected Taler error code `code' in JSON, but field does not 
exist!\n");
     return TALER_EC_INVALID;
   }
diff --git a/src/util/taler-exchange-secmod-eddsa.c 
b/src/util/taler-exchange-secmod-eddsa.c
index 609a5361..cd3fc22f 100644
--- a/src/util/taler-exchange-secmod-eddsa.c
+++ b/src/util/taler-exchange-secmod-eddsa.c
@@ -1558,7 +1558,7 @@ run (void *cls,
       un.sun_family = AF_UNIX;
       strncpy (un.sun_path,
                unixpath,
-               sizeof (un.sun_path));
+               sizeof (un.sun_path) - 1);
       if (0 != bind (sock,
                      (const struct sockaddr *) &un,
                      sizeof (un)))
diff --git a/src/util/taler-exchange-secmod-rsa.c 
b/src/util/taler-exchange-secmod-rsa.c
index 10a52af0..41d78bcf 100644
--- a/src/util/taler-exchange-secmod-rsa.c
+++ b/src/util/taler-exchange-secmod-rsa.c
@@ -1934,7 +1934,7 @@ run (void *cls,
       un.sun_family = AF_UNIX;
       strncpy (un.sun_path,
                unixpath,
-               sizeof (un.sun_path));
+               sizeof (un.sun_path) - 1);
       if (0 != bind (sock,
                      (const struct sockaddr *) &un,
                      sizeof (un)))

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]