X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=coreutils%2Fhostid.c;h=917dc223e3222db342d73243092d39c2f362627c;hb=138d71bc35b86964a4c2bd97f7f578edfead1925;hp=5bbb46f7ee1ad44fceec509f6214cc8d60507667;hpb=6705986f2702dfa3b9dd6247d7558da90f184abc;p=oweals%2Fbusybox.git diff --git a/coreutils/hostid.c b/coreutils/hostid.c index 5bbb46f7e..917dc223e 100644 --- a/coreutils/hostid.c +++ b/coreutils/hostid.c @@ -20,15 +20,19 @@ * */ -#warning This applet has moved to netkit-tiny. After BusyBox 0.49, this -#warning applet will be removed from BusyBox. All maintainence efforts -#warning should be done in the netkit-tiny source tree. +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ +#include +#include #include "busybox.h" -#include extern int hostid_main(int argc, char **argv) { - printf("%lx\n", gethostid()); - return EXIT_SUCCESS; + if (argc > 1) { + bb_show_usage(); + } + + bb_printf("%lx\n", gethostid()); + + bb_fflush_stdout_and_exit(EXIT_SUCCESS); }