Need to be consistent in out nameing of Oci.

It should always be captitalized.

Signed-off-by: Dan Walsh <dwalsh@redhat.com>
This commit is contained in:
Dan Walsh 2017-06-05 15:09:38 -04:00
parent 7f2a769f96
commit 4c48e13619

View file

@ -35,7 +35,7 @@ const (
seccompLocalhostPrefix = "localhost/"
)
func addOciBindMounts(sb *sandbox, containerConfig *pb.ContainerConfig, specgen *generate.Generator) error {
func addOCIBindMounts(sb *sandbox, containerConfig *pb.ContainerConfig, specgen *generate.Generator) error {
mounts := containerConfig.GetMounts()
for _, mount := range mounts {
dest := mount.ContainerPath
@ -337,7 +337,7 @@ func (s *Server) createSandboxContainer(ctx context.Context, containerID string,
specgen := generate.New()
specgen.HostSpecific = true
if err := addOciBindMounts(sb, containerConfig, &specgen); err != nil {
if err := addOCIBindMounts(sb, containerConfig, &specgen); err != nil {
return nil, err
}