]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
hwclock: mark non-standard long options to ignore in CI CHECK
authorChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Thu, 25 Dec 2025 04:32:43 +0000 (23:32 -0500)
committerChristian Goeschel Ndjomouo <cgoesc2@wgu.edu>
Thu, 25 Dec 2025 05:39:10 +0000 (00:39 -0500)
Signed-off-by: Christian Goeschel Ndjomouo <cgoesc2@wgu.edu>
sys-utils/hwclock.c

index 5af4d03ebd81e3e367ad17c9d26ac98b91ac870e..042b2e2c250d3af3cc8b789765f36b8f3a899f31 100644 (file)
@@ -1321,14 +1321,14 @@ int main(int argc, char **argv)
                { "utc",          no_argument,       NULL, 'u'            },
                { "version",      no_argument,       NULL, 'V'            },
                { "systohc",      no_argument,       NULL, 'w'            },
-               { "debug",        no_argument,       NULL, 'D'            },
-               { "ul-debug",     required_argument, NULL, 'd'            },
+               { "debug",        no_argument,       NULL, 'D'            },    /* IGNORECHECK=yes */
+               { "ul-debug",     required_argument, NULL, 'd'            },    /* IGNORECHECK=yes */
                { "verbose",      no_argument,       NULL, 'v'            },
                { "set",          no_argument,       NULL, OPT_SET        },
 #if defined(__linux__) && defined(__alpha__)
-               { "getepoch",     no_argument,       NULL, OPT_GETEPOCH   },
-               { "setepoch",     no_argument,       NULL, OPT_SETEPOCH   },
-               { "epoch",        required_argument, NULL, OPT_EPOCH      },
+               { "getepoch",     no_argument,       NULL, OPT_GETEPOCH   },    /* IGNORECHECK=yes */
+               { "setepoch",     no_argument,       NULL, OPT_SETEPOCH   },    /* IGNORECHECK=yes */
+               { "epoch",        required_argument, NULL, OPT_EPOCH      },    /* IGNORECHECK=yes */
 #endif
 #ifdef __linux__
                { "param-get",    required_argument, NULL, OPT_PARAM_GET  },