summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-06-26 21:07:21 +0000
committerMiles Bader <miles@gnu.org>1996-06-26 21:07:21 +0000
commita5d96b254cf702682010d383cf28370defa13121 (patch)
tree9db054667fd21235c40c809e63938b5f09507d3d
parentf34e0ae3b003cff3c0448e7337fdf90fd8babdd7 (diff)
* hurd/get-host.c <fcntl.h>: New include.cvs/libc-960627
* hurd/set-host.c <fcntl.h>: New include. (_hurd_set_host_config): Include NEW in args to dir_link. Return NWROTE, not NREAD.
-rw-r--r--ChangeLog5
-rw-r--r--hurd/get-host.c1
-rw-r--r--hurd/set-host.c5
3 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 262f2af7fc..87660835ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
Wed Jun 26 13:19:35 1996 Miles Bader <miles@gnu.ai.mit.edu>
+ * hurd/get-host.c <fcntl.h>: New include.
+ * hurd/set-host.c <fcntl.h>: New include.
+ (_hurd_set_host_config): Include NEW in args to dir_link.
+ Return NWROTE, not NREAD.
+
* sysdeps/mach/hurd/getcwd.c
(_hurd_canonicalize_directory_name_internal): Don't deallocate
DOTID & DOTDEVID until we're finished with them (we need to keep
diff --git a/hurd/get-host.c b/hurd/get-host.c
index 231ee59d88..a71ad88a7f 100644
--- a/hurd/get-host.c
+++ b/hurd/get-host.c
@@ -17,6 +17,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
+#include <fcntl.h>
#include <hurd.h>
#include "hurdhost.h"
diff --git a/hurd/set-host.c b/hurd/set-host.c
index e9af697226..f8d2d692f7 100644
--- a/hurd/set-host.c
+++ b/hurd/set-host.c
@@ -17,6 +17,7 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
+#include <fcntl.h>
#include <hurd.h>
#include "hurdhost.h"
@@ -39,10 +40,10 @@ _hurd_set_host_config (const char *item, const char *value, size_t valuelen)
err = __io_write (new, value, valuelen, 0, &nwrote);
if (! err)
/* Atomically link the new node onto the name. */
- err = __dir_link (dir, item, 0);
+ err = __dir_link (dir, new, item, 0);
__mach_port_deallocate (__mach_task_self (), new);
}
__mach_port_deallocate (__mach_task_self (), dir);
- return nread;
+ return nwrote;
}