aboutsummaryrefslogtreecommitdiff
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
parentb3b36477a0c30a716fc59c4e1ac590a6b0a7165f (diff)
downloadgnunet-70759e0496229f2041ddbff76ad89f978434a107.tar.gz
gnunet-70759e0496229f2041ddbff76ad89f978434a107.zip
fix #3588: avoid bash-isms
-rwxr-xr-xcontrib/gnunet-gns-import.sh2
-rw-r--r--src/gns/gnunet-gns-proxy-setup-ca2
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gnunet-gns-import.sh b/contrib/gnunet-gns-import.sh
index 0ad3ab1d2..cd3878e11 100755
--- a/contrib/gnunet-gns-import.sh
+++ b/contrib/gnunet-gns-import.sh
@@ -26,7 +26,7 @@ options=''
26while getopts "c:" opt; do 26while getopts "c:" opt; do
27 case $opt in 27 case $opt in
28 c) 28 c)
29 options+="-c $OPTARG" 29 options="$options -c $OPTARG"
30 ;; 30 ;;
31 \?) 31 \?)
32 echo "Invalid option: -$OPTARG" >&2 32 echo "Invalid option: -$OPTARG" >&2
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