Add fmt make target, incorporate address length fix from qiwenmin, add a shortcut for saving your keys

This commit is contained in:
idk
2020-10-18 00:58:45 -04:00
parent 5a43ad260d
commit 33f3caa3f9
6 changed files with 61 additions and 10 deletions

View File

@@ -22,7 +22,7 @@ func SetType(s string) func(*SAMEmit) error {
c.Style = s
return nil
}
return fmt.Errorf("Invalid session STYLE=%s, must be STREAM, DATAGRAM, or RAW")
return fmt.Errorf("Invalid session STYLE=%s, must be STREAM, DATAGRAM, or RAW", s)
}
}