From 6b520bee52f416a79691b959094376ae5787a385 Mon Sep 17 00:00:00 2001 From: Li kunyu Date: Sat, 8 Oct 2022 14:06:34 +0800 Subject: [PATCH] test-tool: remove a redundant semicolon Signed-off-by: Li kunyu --- test-tool/test_iscsi_chap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-tool/test_iscsi_chap.c b/test-tool/test_iscsi_chap.c index 4708963..57668e0 100644 --- a/test-tool/test_iscsi_chap.c +++ b/test-tool/test_iscsi_chap.c @@ -90,7 +90,7 @@ chap_mod_strip_replace_queue(struct iscsi_context *iscsi, struct iscsi_pdu *pdu, ret = test_iscsi_strip_tag(iscsi, pdu, "CHAP_A="); if (ret == -ENOENT) { logging(LOG_VERBOSE, "ignoring login PDU without CHAP_A"); - goto out;; + goto out; } if (ret < 0) { return ret;