exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 34f9900f661773859c452bd7ca7b5913959ba80e
parent 4656f7f88359ad9bcaad41b2d0fa4cec7489baee
Author: Florian Dold <florian.dold@gmail.com>
Date:   Mon, 25 Apr 2016 21:30:13 +0200

chmod instead of fchmod

Diffstat:
Msrc/exchange/taler-exchange-httpd.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/exchange/taler-exchange-httpd.c b/src/exchange/taler-exchange-httpd.c @@ -811,7 +811,7 @@ main (int argc, fh = GNUNET_NETWORK_get_fd (nh); - if (0 != fchmod (fh, unixpath_mode)) + if (0 != chmod (unixpath, unixpath_mode)) { fprintf (stderr, "chmod failed: %s\n", strerror (errno)); return 1;