diff options
author | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-25 14:39:05 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@lukeshu.com> | 2017-05-25 17:28:30 -0400 |
commit | 6092b9d93df1c3d5170a2b6aa0275aebef18bd37 (patch) | |
tree | 55627e026fa7f538f8085f0fb8ed1fffcce4fcbc /src/lib/libreblacklist | |
parent | aedbebb0ea3c7b40dda987b43ff21475ef67f423 (diff) |
start moving things to use the libremessages exit codes
Diffstat (limited to 'src/lib/libreblacklist')
-rwxr-xr-x | src/lib/libreblacklist | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libreblacklist b/src/lib/libreblacklist index 6c354fe..d6fc7f3 100755 --- a/src/lib/libreblacklist +++ b/src/lib/libreblacklist @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Copyright (C) 2013-2014, 2016 Luke Shumaker <lukeshu@sbcglobal.net> +# Copyright (C) 2013-2014, 2016-2017 Luke Shumaker <lukeshu@sbcglobal.net> # # License: GNU GPLv2+ # @@ -68,7 +68,7 @@ else main() { if [[ $# -eq 0 ]]; then usage >&2 - exit 1 + exit $EXIT_INVALIDARGUMENT fi _blacklist_cmd=$1 shift |