diff options
-rw-r--r-- | subr.rtl/rtl_complex.subr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subr.rtl/rtl_complex.subr b/subr.rtl/rtl_complex.subr index 4894e0f6..34b87837 100644 --- a/subr.rtl/rtl_complex.subr +++ b/subr.rtl/rtl_complex.subr @@ -136,7 +136,7 @@ rtl_filter_vars() { }; rtl_flock_acquire() { - local _fd="${1}" _conflict_exit_code="${2:-622}" _wait="${3:-3600}" + local _fd="${1}" _conflict_exit_code="${2:-253}" _wait="${3:-3600}" while true; do if flock -E "${_conflict_exit_code}" -w "${_wait}" "${_fd}"; then break; |