gnunet-svn
[Top][All Lists]
Advanced

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

[taler-exchange] 03/03: exceptions-apply


From: gnunet
Subject: [taler-exchange] 03/03: exceptions-apply
Date: Wed, 10 May 2023 01:08:11 +0200

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

grothoff pushed a commit to branch master
in repository exchange.

commit 5f9c3021db128e53013f8ad22781254f57c3c355
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Wed May 10 01:08:05 2023 +0200

    exceptions-apply
---
 src/templating/mustach.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/templating/mustach.c b/src/templating/mustach.c
index 9797c533..caa80dcc 100644
--- a/src/templating/mustach.c
+++ b/src/templating/mustach.c
@@ -297,7 +297,7 @@ static int process(const char *template, struct iwrap 
*iwrap, FILE *file, const
 #endif
                        if (len > MUSTACH_MAX_LENGTH)
                                return MUSTACH_ERROR_TAG_TOO_LONG;
-                       GNUNET_memcpy(name, beg, len);
+                       memcpy(name, beg, len);
                        name[len] = 0;
                        break;
                }
@@ -317,7 +317,7 @@ static int process(const char *template, struct iwrap 
*iwrap, FILE *file, const
                                return MUSTACH_ERROR_BAD_SEPARATORS;
                        oplen = l;
                        tmp = alloca(oplen + 1);
-                       GNUNET_memcpy(tmp, beg, oplen);
+                       memcpy(tmp, beg, oplen);
                        tmp[oplen] = 0;
                        opstr = tmp;
                        while (l < len && isspace(beg[l])) l++;
@@ -325,7 +325,7 @@ static int process(const char *template, struct iwrap 
*iwrap, FILE *file, const
                                return MUSTACH_ERROR_BAD_SEPARATORS;
                        cllen = len - l;
                        tmp = alloca(cllen + 1);
-                       GNUNET_memcpy(tmp, beg + l, cllen);
+                       memcpy(tmp, beg + l, cllen);
                        tmp[cllen] = 0;
                        clstr = tmp;
                        break;

-- 
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]