aboutsummaryrefslogtreecommitdiffstats
path: root/guts/symlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'guts/symlink.c')
-rw-r--r--guts/symlink.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/guts/symlink.c b/guts/symlink.c
index bc1c4be..324fef7 100644
--- a/guts/symlink.c
+++ b/guts/symlink.c
@@ -1,10 +1,10 @@
/*
* static int
- * wrap_symlink(const char *oldpath, const char *newpath) {
+ * wrap_symlink(const char *oldname, const char *newpath) {
* int rc = -1;
*/
- rc = wrap_symlinkat(oldpath, AT_FDCWD, newpath);
+ rc = wrap_symlinkat(oldname, AT_FDCWD, newpath);
/* return rc;
* }