git: 1654b51455cd - main - usbconfig: actually set the exit code in usage()
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 20 Dec 2021 21:26:29 UTC
The branch main has been updated by joerg: URL: https://cgit.FreeBSD.org/src/commit/?id=1654b51455cd1c890b08685551abafec88111606 commit 1654b51455cd1c890b08685551abafec88111606 Author: Joerg Wunsch <joerg@FreeBSD.org> AuthorDate: 2021-12-20 21:25:19 +0000 Commit: Joerg Wunsch <joerg@FreeBSD.org> CommitDate: 2021-12-20 21:25:19 +0000 usbconfig: actually set the exit code in usage() Oversight in previous commit: usage() had been turned to accept an "exitcode" parameter, but it hasn't been used. MFC after: 2 weeks --- usr.sbin/usbconfig/usbconfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/usbconfig/usbconfig.c b/usr.sbin/usbconfig/usbconfig.c index 49acbf68b33c..81112d957bbb 100644 --- a/usr.sbin/usbconfig/usbconfig.c +++ b/usr.sbin/usbconfig/usbconfig.c @@ -303,7 +303,7 @@ usage(int exitcode) " list" "\n" " do_request <bmReqTyp> <bReq> <wVal> <wIdx> <wLen> <data...>" "\n" ); - exit(1); + exit(exitcode); } static void