[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-exchange] branch master updated: extensions: mark name and versio
From: |
gnunet |
Subject: |
[taler-exchange] branch master updated: extensions: mark name and version as const |
Date: |
Tue, 03 Sep 2024 14:57:18 +0200 |
This is an automated email from the git hooks/post-receive script.
oec pushed a commit to branch master
in repository exchange.
The following commit(s) were added to refs/heads/master by this push:
new 7fa58f661 extensions: mark name and version as const
7fa58f661 is described below
commit 7fa58f66193611491f5aa6cafab6a85845ede01f
Author: Özgür Kesim <oec-taler@kesim.org>
AuthorDate: Tue Sep 3 14:57:12 2024 +0200
extensions: mark name and version as const
---
src/include/taler_extensions.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/include/taler_extensions.h b/src/include/taler_extensions.h
index 1eb567f72..d924d1aba 100644
--- a/src/include/taler_extensions.h
+++ b/src/include/taler_extensions.h
@@ -88,7 +88,7 @@ struct TALER_Extension
* The name of the extension, must be unique among all loaded extensions. It
* is used in URLs for /extension/$NAME as well.
*/
- char *name;
+ const char *name;
/**
* Criticality of the extension. It has the same semantics as "critical" has
@@ -103,7 +103,7 @@ struct TALER_Extension
* Version of the extension must be provided in Taler's protocol version
ranges notation, see
* https://docs.taler.net/core/api-common.html#protocol-version-ranges
*/
- char *version;
+ const char *version;
/**
* If the extension is marked as enabled, it will be listed in the
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-exchange] branch master updated: extensions: mark name and version as const,
gnunet <=