Swap args to dir_link.

This commit is contained in:
Miles Bader 1995-10-26 22:19:57 +00:00
parent efc755b282
commit 29370ca488
4 changed files with 4 additions and 4 deletions

View File

@ -64,7 +64,7 @@ DEFUN(bind, (fd, addr, len),
MACH_MSG_TYPE_COPY_SEND);
if (! err)
/* Link the node, now a socket, into the target directory. */
err = __dir_link (node, dir, n);
err = __dir_link (dir, node, n);
__mach_port_deallocate (__mach_task_self (), node);
if (! err)
{

View File

@ -45,7 +45,7 @@ DEFUN(__link, (from, to), CONST char *from AND CONST char *to)
todir = __file_name_split (to, &toname);
if (todir != MACH_PORT_NULL)
{
err = __dir_link (linknode, todir, toname);
err = __dir_link (todir, linknode, toname);
__mach_port_deallocate (__mach_task_self (), todir);
}
__mach_port_deallocate (__mach_task_self (), linknode);

View File

@ -101,7 +101,7 @@ DEFUN(__mknod, (file_name, mode, dev),
if (! err)
/* Link the node, now a valid device, into the target directory. */
err = __dir_link (node, dir, name);
err = __dir_link (dir, node, name);
__mach_port_deallocate (__mach_task_self (), dir);
__mach_port_deallocate (__mach_task_self (), node);

View File

@ -55,7 +55,7 @@ DEFUN(__symlink, (from, to), CONST char *from AND CONST char *to)
if (! err)
/* Link the node, now a valid symlink, into the target directory. */
err = __dir_link (node, dir, name);
err = __dir_link (dir, node, name);
__mach_port_deallocate (__mach_task_self (), dir);
__mach_port_deallocate (__mach_task_self (), node);