mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
all: use strings.Contains instead Index
Signed-off-by: Elena Morozova <lelenanam@gmail.com>
This commit is contained in:
parent
f1e5349a03
commit
a37027f6bd
2 changed files with 2 additions and 2 deletions
|
@ -180,7 +180,7 @@ func regexpMatch(pattern, path string) (bool, error) {
|
|||
} else if ch == '?' {
|
||||
// "?" is any char except "/"
|
||||
regStr += "[^" + escSL + "]"
|
||||
} else if strings.Index(".$", string(ch)) != -1 {
|
||||
} else if ch == '.' || ch == '$' {
|
||||
// Escape some regexp special chars that have no meaning
|
||||
// in golang's filepath.Match
|
||||
regStr += `\` + string(ch)
|
||||
|
|
|
@ -697,7 +697,7 @@ func parseSecurityOpts(securityOpts []string) ([]string, error) {
|
|||
for key, opt := range securityOpts {
|
||||
con := strings.SplitN(opt, "=", 2)
|
||||
if len(con) == 1 && con[0] != "no-new-privileges" {
|
||||
if strings.Index(opt, ":") != -1 {
|
||||
if strings.Contains(opt, ":") {
|
||||
con = strings.SplitN(opt, ":", 2)
|
||||
} else {
|
||||
return securityOpts, fmt.Errorf("Invalid --security-opt: %q", opt)
|
||||
|
|
Loading…
Reference in a new issue