summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-03-09 21:19:16 +0000
committerRoland McGrath <roland@gnu.org>2002-03-09 21:19:16 +0000
commit70481be8b5a90dca79a078ba5a5ef65d9dfbeda8 (patch)
tree31ef7a3b4ab939e7f3ec61245e48bc7a15750c4b /hurd
parent2fb1a8624be0af58fbcf0665540eca529c29d1d7 (diff)
* hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
Reported by Jon Arney <jarney1@cox.net>. 2002-02-23 Roland McGrath <roland@frob.com> * hurd/hurd/threadvar.h (__hurd_threadvar_location): Add __THROW to declaration. (__hurd_errno_location): Function removed.
Diffstat (limited to 'hurd')
-rw-r--r--hurd/hurdsig.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c
index f26d43b111..1bfc093528 100644
--- a/hurd/hurdsig.c
+++ b/hurd/hurdsig.c
@@ -198,7 +198,7 @@ write_corefile (int signo, const struct hurd_signal_detail *detail)
if (! err && file != MACH_PORT_NULL)
/* The core dump into FILE succeeded, so now link it into the
directory. */
- err = __dir_link (file, coredir, name, 1);
+ err = __dir_link (coredir, file, name, 1);
__mach_port_deallocate (__mach_task_self (), file);
__mach_port_deallocate (__mach_task_self (), coredir);
return !err && file != MACH_PORT_NULL;