Fix order of assignments so we set path as intended, not to empty.
This commit is contained in:
parent
1a02672407
commit
4880294ca4
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
#!@SH@
|
||||
# $NetBSD: client-prepare,v 1.3 2016/12/18 22:59:35 joerg Exp $
|
||||
# $NetBSD: client-prepare,v 1.4 2020/04/04 15:17:36 riastradh Exp $
|
||||
|
||||
. @PBULK_CONFIG@
|
||||
|
||||
|
@ -29,9 +29,9 @@ done
|
|||
for client in ${unique_clients}; do
|
||||
case ${client} in
|
||||
/*)
|
||||
path=${client}
|
||||
port=
|
||||
client=
|
||||
path=${client}
|
||||
;;
|
||||
*:*)
|
||||
port="-p ${client##*:}"
|
||||
|
|
Loading…
Reference in a new issue