Move ListOps to utils submodule

This will be needed for later use in docker-init without a docker
dependency
This commit is contained in:
Alexander Larsson
2013-10-25 15:13:24 -07:00
committed by Victor Vieux
parent 249f5a65a5
commit d063c8d941
6 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ func MergeConfig(userConf, imageConf *Config) error {
return nil
}
func parseLxcConfOpts(opts ListOpts) ([]KeyValuePair, error) {
func parseLxcConfOpts(opts utils.ListOpts) ([]KeyValuePair, error) {
out := make([]KeyValuePair, len(opts))
for i, o := range opts {
k, v, err := parseLxcOpt(o)