ntpd: default to FEATURE_NTP_AUTH=y
[oweals/busybox.git] / coreutils / readlink.c
index b8e327d11863fcd5025b0dc26d06f91d9cedae32..49361cea03a899e3f6178829298f516c48915069 100644 (file)
@@ -86,7 +86,7 @@ int readlink_main(int argc UNUSED_PARAM, char **argv)
 
        /* NOFORK: only one alloc is allowed; must free */
        if (opt & 1) { /* -f */
-               buf = xmalloc_realpath(fname);
+               buf = xmalloc_realpath_coreutils(fname);
        } else {
                buf = xmalloc_readlink_or_warn(fname);
        }