diff options
author | 2020-03-31 08:03:44 +0000 | |
---|---|---|
committer | 2020-03-31 08:03:44 +0000 | |
commit | 0fda6f542a4d4fc87fc7d7fbcdf77038c0e37c4f (patch) | |
tree | 2f91b706e652399aee1f147ba7aabc0894a863f8 /usr.sbin/rcctl | |
parent | When using a fixed Tx MCS in iwx(4) enable SGI if the peer supports it. (diff) | |
download | wireguard-openbsd-0fda6f542a4d4fc87fc7d7fbcdf77038c0e37c4f.tar.xz wireguard-openbsd-0fda6f542a4d4fc87fc7d7fbcdf77038c0e37c4f.zip |
Missing semi-colons.
Diffstat (limited to 'usr.sbin/rcctl')
-rw-r--r-- | usr.sbin/rcctl/rcctl.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/rcctl/rcctl.sh b/usr.sbin/rcctl/rcctl.sh index 88085a5865b..b7bd820fa05 100644 --- a/usr.sbin/rcctl/rcctl.sh +++ b/usr.sbin/rcctl/rcctl.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: rcctl.sh,v 1.107 2018/10/21 21:20:40 ajacoutot Exp $ +# $OpenBSD: rcctl.sh,v 1.108 2020/03/31 08:03:44 ajacoutot Exp $ # # Copyright (c) 2014, 2015 Antoine Jacoutot <ajacoutot@openbsd.org> # Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -239,6 +239,7 @@ svc_ls() ;; *) _ret=1 + ;; esac return ${_ret} |