[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] branch master updated: gnunet-bcd: OPEN->open
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] branch master updated: gnunet-bcd: OPEN->open |
Date: |
Sat, 07 Sep 2019 11:59:07 +0200 |
This is an automated email from the git hooks/post-receive script.
ng0 pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new f230357ab gnunet-bcd: OPEN->open
f230357ab is described below
commit f230357abbf514b19fd476de456b3e87c15376a5
Author: ng0 <address@hidden>
AuthorDate: Sat Sep 7 09:57:04 2019 +0000
gnunet-bcd: OPEN->open
---
src/gns/gnunet-bcd.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/gns/gnunet-bcd.c b/src/gns/gnunet-bcd.c
index 7906ffd4d..368afbbf5 100644
--- a/src/gns/gnunet-bcd.c
+++ b/src/gns/gnunet-bcd.c
@@ -225,7 +225,7 @@ access_handler_callback (void *cls,
if (WIFSIGNALED (ret) || (0 != WEXITSTATUS (ret)))
GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "system", p);
GNUNET_asprintf (&deffile, "%s%s%s", tmp, DIR_SEPARATOR_STR,
"gns-bcd.pdf");
- fd = OPEN (deffile, O_RDONLY);
+ fd = open (deffile, O_RDONLY);
if (-1 == fd)
{
GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", deffile);
@@ -445,7 +445,7 @@ run (void *cls,
GNUNET_asprintf (&fn, "%s%s%s", dir, DIR_SEPARATOR_STR, "gns-bcd.html");
GNUNET_asprintf (&resfile, "%s%s%s", dir, DIR_SEPARATOR_STR, "gns-bcd.tex");
GNUNET_free (dir);
- fd = OPEN (fn, O_RDONLY);
+ fd = open (fn, O_RDONLY);
if (-1 == fd)
{
GNUNET_log_strerror_file (GNUNET_ERROR_TYPE_ERROR, "open", fn);
--
To stop receiving notification emails like this one, please contact
address@hidden.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [gnunet] branch master updated: gnunet-bcd: OPEN->open,
gnunet <=