<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>