(ll, labels []string)
| 358 | } |
| 359 | |
| 360 | func checkLabels(ll, labels []string) error { |
| 361 | if !slicesEqual(ll, labels) { |
| 362 | return fmt.Errorf("labels %q do not match previous recipients %q", ll, labels) |
| 363 | } |
| 364 | return nil |
| 365 | } |
| 366 | |
| 367 | // IdentityV1 implements the identity-v1 state machine. It returns an exit code |
| 368 | // to pass to os.Exit. |
no test coverage detected
searching dependent graphs…