<div>Hi. </div><div>Â </div><div>Mountpoint doesnt support symlink argument now.</div><div>For example, "mountpoint -x symlink_path" displays wrong output.</div><div>Â </div><div>plz have a look.</div><div>Â </div><div>Â </div><div>Â </div><div>diff --git a/toys/other/mountpoint.c b/toys/other/mountpoint.c<br>index 150865c..d7432c9 100644<br>--- a/toys/other/mountpoint.c<br>+++ b/toys/other/mountpoint.c<br>@@ -33,7 +33,8 @@ void mountpoint_main(void)<br>Â Â char *arg = *toys.optargs;<br>Â Â int quiet = toys.optflags & FLAG_q;<br>Â <br>-Â if (lstat(arg, &st1)) perror_exit("%s", arg);<br>+Â if ((toys.optflags & FLAG_x) && stat(arg, &st1) || lstat(arg, &st1)) <br>+Â Â Â perror_exit("%s", arg);<br>Â <br>Â Â if (toys.optflags & FLAG_x) {<br>Â Â Â Â if (S_ISBLK(st1.st_mode)) {<br>-- </div>