diff options
-rwxr-xr-x | contrib/gnunet-gns-import.sh | 2 | ||||
-rw-r--r-- | src/gns/gnunet-gns-proxy-setup-ca | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/gnunet-gns-import.sh b/contrib/gnunet-gns-import.sh index 0ad3ab1d28..cd3878e112 100755 --- a/contrib/gnunet-gns-import.sh +++ b/contrib/gnunet-gns-import.sh @@ -26,7 +26,7 @@ options='' while getopts "c:" opt; do case $opt in c) - options+="-c $OPTARG" + options="$options -c $OPTARG" ;; \?) echo "Invalid option: -$OPTARG" >&2 diff --git a/src/gns/gnunet-gns-proxy-setup-ca b/src/gns/gnunet-gns-proxy-setup-ca index c2182d8698..692cca974f 100644 --- a/src/gns/gnunet-gns-proxy-setup-ca +++ b/src/gns/gnunet-gns-proxy-setup-ca @@ -13,7 +13,7 @@ options='' while getopts "c:" opt; do case $opt in c) - options+="-c $OPTARG" + options="$options -c $OPTARG" ;; \?) echo "Invalid option: -$OPTARG" >&2 |