aboutsummaryrefslogtreecommitdiffstats
path: root/ports/unix/guts/link.c
diff options
context:
space:
mode:
Diffstat (limited to 'ports/unix/guts/link.c')
-rw-r--r--ports/unix/guts/link.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ports/unix/guts/link.c b/ports/unix/guts/link.c
index cabcdf4..3b340ee 100644
--- a/ports/unix/guts/link.c
+++ b/ports/unix/guts/link.c
@@ -1,9 +1,9 @@
/*
- * Copyright (c) 2008-2010, 2012 Wind River Systems; see
+ * Copyright (c) 2008-2010, 2012, 2013 Wind River Systems; see
* guts/COPYRIGHT for information.
*
* static int
- * wrap_link(const char *oldpath, const char *newpath) {
+ * wrap_link(const char *oldname, const char *newname) {
* int rc = -1;
*/
/* since 2.6.18 or so, linkat supports AT_SYMLINK_FOLLOW, which
@@ -12,7 +12,7 @@
* does NOT support AT_SYMLINK_NOFOLLOW! So define this in
* your port's portdefs.h or hope the default works for you.
*/
- rc = wrap_linkat(AT_FDCWD, oldpath, AT_FDCWD, newpath,
+ rc = wrap_linkat(AT_FDCWD, oldname, AT_FDCWD, newname,
PSEUDO_LINK_SYMLINK_BEHAVIOR);
/* return rc;