aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-12-20 11:59:58 +0000
committerChristian Grothoff <christian@grothoff.org>2014-12-20 11:59:58 +0000
commit70759e0496229f2041ddbff76ad89f978434a107 (patch)
tree935741959158dc3e2c132f01fee82885cecaa666 /src
parentb3b36477a0c30a716fc59c4e1ac590a6b0a7165f (diff)
downloadgnunet-70759e0496229f2041ddbff76ad89f978434a107.tar.gz
gnunet-70759e0496229f2041ddbff76ad89f978434a107.zip
fix #3588: avoid bash-isms
Diffstat (limited to 'src')
-rw-r--r--src/gns/gnunet-gns-proxy-setup-ca2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gns/gnunet-gns-proxy-setup-ca b/src/gns/gnunet-gns-proxy-setup-ca
index c2182d869..692cca974 100644
--- a/src/gns/gnunet-gns-proxy-setup-ca
+++ b/src/gns/gnunet-gns-proxy-setup-ca
@@ -13,7 +13,7 @@ options=''
13while getopts "c:" opt; do 13while getopts "c:" opt; do
14 case $opt in 14 case $opt in
15 c) 15 c)
16 options+="-c $OPTARG" 16 options="$options -c $OPTARG"
17 ;; 17 ;;
18 \?) 18 \?)
19 echo "Invalid option: -$OPTARG" >&2 19 echo "Invalid option: -$OPTARG" >&2