change identifier in the help messages

This commit is contained in:
Chris Beck
2025-12-05 09:41:33 -07:00
parent 1a070011e3
commit 2376bfed13
+1 -1
View File
@@ -139,7 +139,7 @@ fn parse_gateway_command(s: &str) -> Result<GatewayCommand, String> {
// Parse using Conf, treating the input as command line arguments
// Prepend a dummy program name since Conf expects argv[0]
let args = std::iter::once("gateway")
let args = std::iter::once("signal-gateway")
.chain(s.split_whitespace())
.collect::<Vec<_>>();