aboutsummaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rw-r--r--etc/associate-address.fln4
-rw-r--r--etc/default.fln6
2 files changed, 7 insertions, 3 deletions
diff --git a/etc/associate-address.fln b/etc/associate-address.fln
index 4c5d5d1..5c20a20 100644
--- a/etc/associate-address.fln
+++ b/etc/associate-address.fln
@@ -15,6 +15,8 @@
along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
if (.AssociateAddressResponse.return) {
- if (!.AssociateAddressResponse.return[true])
+ if (!.AssociateAddressResponse.return[true]) {
error("Return: ",.AssociateAddressResponse.return,"\n");
+ exit(1);
+ }
}
diff --git a/etc/default.fln b/etc/default.fln
index 2e2f690..9a6f140 100644
--- a/etc/default.fln
+++ b/etc/default.fln
@@ -14,9 +14,11 @@
You should have received a copy of the GNU General Public License
along with Eclat. If not, see <http://www.gnu.org/licenses/>. */
-if (.Response.Errors)
+if (.Response.Errors) {
error("Error: ",.Response.Errors.Error.Message,"\n");
-else {
+ exit(1);
+} else {
error("Unrecognized response:\n");
dump(.);
+ exit(2);
}

Return to:

Send suggestions and report system problems to the System administrator.