aboutsummaryrefslogtreecommitdiffstats
path: root/ports
diff options
context:
space:
mode:
Diffstat (limited to 'ports')
-rw-r--r--ports/unix/guts/mknod.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/unix/guts/mknod.c b/ports/unix/guts/mknod.c
index 25c2962..eeca65d 100644
--- a/ports/unix/guts/mknod.c
+++ b/ports/unix/guts/mknod.c
@@ -1,12 +1,12 @@
/*
- * Copyright (c) 2011 Wind River Systems; see
+ * Copyright (c) 2011,2014 Wind River Systems; see
* guts/COPYRIGHT for information.
*
* int mknod(const char *path, mode_t mode, dev_t dev)
* int rc = -1;
*/
- rc = real_mknod(path, mode, dev);
+ rc = wrap_mknodat(AT_FDCWD, path, mode, dev);
/* return rc;
* }