Minor touchups

This commit is contained in:
AlexSSD7 2023-09-01 16:29:01 +01:00
commit ab519c54dc
10 changed files with 15 additions and 14 deletions

View file

@ -158,7 +158,7 @@ func (fm *FileManager) Mount(devName string, mo MountOptions) error {
return fmt.Errorf("device name is empty")
}
// It does allow mapper/ prefix for mapped devices.
// It does allow "mapper/" prefix for mapped devices.
// This is to enable the support for LVM and LUKS.
if !utils.ValidateDevName(devName) {
return fmt.Errorf("bad device name")

View file

@ -15,7 +15,7 @@ type PortForwardingRule struct {
VMPort uint16
}
func ParsePortForwardString(s string) (PortForwardingRule, error) {
func ParsePortForwardingRuleString(s string) (PortForwardingRule, error) {
split := strings.Split(s, ":")
switch len(split) {
case 2: