From 5abaaee6252b0f584a189b669a421f763ff973f0 Mon Sep 17 00:00:00 2001 From: "Infineon\\StieberD" Date: Tue, 26 Nov 2024 16:35:04 -0700 Subject: [PATCH] added unknown command error catching --- LSL2/STPROC/OBJ_SAP.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/LSL2/STPROC/OBJ_SAP.txt b/LSL2/STPROC/OBJ_SAP.txt index 49e4431..54db258 100644 --- a/LSL2/STPROC/OBJ_SAP.txt +++ b/LSL2/STPROC/OBJ_SAP.txt @@ -1485,9 +1485,12 @@ CheckForErrors: SftpError = True$ Case IndexC(stat, "error", 1) SftpError = True$ + Case IndexC(stat, "unknown command", 1) + SftpError = True$ Case Otherwise$ SftpError = False$ End Case return +