claenups for previous commit
[oweals/busybox.git] / coreutils / link.c
index 56832fdf6b17a5e01f67a53182a6956694f600d9..d8d583b7b79bd4ef64e452df11643e146c4bfac2 100644 (file)
 int link_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
 int link_main(int argc UNUSED_PARAM, char **argv)
 {
-       opt_complementary = "=2"; /* exactly 2 params */
-       getopt32(argv, "");
+       getopt32(argv, "^" "" "\0" "=2");
        argv += optind;
        if (link(argv[0], argv[1]) != 0) {
                /* shared message */
-               bb_perror_msg_and_die("can't create %slink "
-                                       "%s to %s", "hard",
-                                       argv[1], argv[0]
+               bb_perror_msg_and_die("can't create %slink '%s' to '%s'",
+                       "hard", argv[1], argv[0]
                );
        }
        return EXIT_SUCCESS;