From cf7349aa03ca16d86f668b25d9c0d0a6e903d361 Mon Sep 17 00:00:00 2001 From: Bertho Stultiens Date: Fri, 7 Aug 2026 12:04:09 +0200 Subject: [PATCH] linuxcncrsh: Fix typo in reply text asserting a SET as a GET command. --- src/emc/usr_intf/emcrsh.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emc/usr_intf/emcrsh.cc b/src/emc/usr_intf/emcrsh.cc index c50b7643fa9..ca26a503bbf 100644 --- a/src/emc/usr_intf/emcrsh.cc +++ b/src/emc/usr_intf/emcrsh.cc @@ -3080,7 +3080,7 @@ int commandGetSet(connectionRecType &ctx, cmdType getset) errornl( ctx, fmt::format("Too few arguments to SET {}, have {}, need {} or more", tag->name, ctx.toks.size() - 2, tag->nset)); - replynl(ctx, fmt::format("GET {} NAK", tag->name)); + replynl(ctx, fmt::format("SET {} NAK", tag->name)); return -1; }