]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2002-03-09 Roland McGrath <roland@frob.com>
authorRoland McGrath <roland@gnu.org>
Sat, 9 Mar 2002 21:43:06 +0000 (21:43 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 9 Mar 2002 21:43:06 +0000 (21:43 +0000)
* hurd/hurdsig.c (write_corefile): Fix swapped arguments to __dir_link.
Reported by Jon Arney <jarney1@cox.net>.

hurd/hurdsig.c

index 748d8406c1e6f528d271f39cd215b595257498be..0432c9ce901af5f793c424a322e82cdec78dd732 100644 (file)
@@ -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;