gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: -prepend X to ensure identifiers do not


From: gnunet
Subject: [gnunet] branch master updated: -prepend X to ensure identifiers do not start with a number
Date: Sun, 22 Aug 2021 11:48:03 +0200

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

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 9ef7f0704 -prepend X to ensure identifiers do not start with a number
9ef7f0704 is described below

commit 9ef7f0704fa0458f2e27ba188aec5102dbb780b2
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Aug 22 11:44:22 2021 +0200

    -prepend X to ensure identifiers do not start with a number
---
 src/pq/pq_event.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/pq/pq_event.c b/src/pq/pq_event.c
index e6c2d07fd..2890869a3 100644
--- a/src/pq/pq_event.c
+++ b/src/pq/pq_event.c
@@ -388,7 +388,7 @@ register_notify (void *cls,
   struct GNUNET_DB_EventHandler *eh = value;
 
   manage_subscribe (db,
-                    "LISTEN ",
+                    "LISTEN X",
                     eh);
   return GNUNET_OK;
 }
@@ -440,7 +440,7 @@ GNUNET_PQ_event_listen (struct GNUNET_PQ_Context *db,
               fd);
   }
   manage_subscribe (db,
-                    "LISTEN ",
+                    "LISTEN X",
                     eh);
   GNUNET_assert (0 ==
                  pthread_mutex_unlock (&db->notify_lock));
@@ -461,7 +461,7 @@ GNUNET_PQ_event_listen_cancel (struct 
GNUNET_DB_EventHandler *eh)
                                                         eh));
 
   manage_subscribe (db,
-                    "UNLISTEN ",
+                    "UNLISTEN X",
                     eh);
   if ( (NULL != db->sc) &&
        (0 == GNUNET_CONTAINER_multishortmap_size (db->channel_map)) )
@@ -486,7 +486,7 @@ GNUNET_PQ_event_notify (struct GNUNET_PQ_Context *db,
   PGresult *result;
 
   end = stpcpy (sql,
-                "NOTIFY ");
+                "NOTIFY X");
   end = es_to_channel (es,
                        end);
   end = stpcpy (end,

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