From 994e674885e700c11c975284a7efbc8ca2328add Mon Sep 17 00:00:00 2001 From: Daniel Steglich Date: Mon, 30 Nov 2015 20:39:38 +0000 Subject: [PATCH] Github issue 320: fixed display error * switched "ignore SSL cert errors" and "use basic auth" --- actions/dynamicdns | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/actions/dynamicdns b/actions/dynamicdns index 6b6f554a4..993ea13a1 100755 --- a/actions/dynamicdns +++ b/actions/dynamicdns @@ -259,13 +259,13 @@ doStatus() else echo "${DISABLED_STRING}" fi - if [ ! -z "${basicauth}" ];then - echo "${basicauth}" + if [ ! -z "${ignoreCertError}" ];then + echo "${ignoreCertError}" else echo "${DISABLED_STRING}" fi - if [ ! -z "${ignoreCertError}" ];then - echo "${ignoreCertError}" + if [ ! -z "${basicauth}" ];then + echo "${basicauth}" else echo "${DISABLED_STRING}" fi