diff options
author | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2024-02-02 20:20:20 +0100 |
commit | e9e2f686737d9ff395af502f9aeee17548dfcb2c (patch) | |
tree | ed60b6c8f16aa4debebb76f478a1bd7329a14fa5 /src/c_lhosts.go | |
parent | stack (diff) | |
download | hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.gz hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.bz2 hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.xz hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.tar.zst hardflip-e9e2f686737d9ff395af502f9aeee17548dfcb2c.zip |
func pointers yo
Diffstat (limited to '')
-rw-r--r-- | src/c_lhosts.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_lhosts.go b/src/c_lhosts.go index 39800f6..d3e201e 100644 --- a/src/c_lhosts.go +++ b/src/c_lhosts.go @@ -161,7 +161,7 @@ func (host *HostNode) protocol_str() string { case 0: return "SSH" case 1: return "RDP" case 2: return "Single command" - case 3: return "OpenStack" + case 3: return "OpenStack CLI" default: return "" } } |