fixed `Looback` typo.

This commit is contained in:
Andrews Medina 2013-11-30 16:28:52 -02:00
parent e8437e8fcf
commit fea432bdf5
1 changed files with 2 additions and 2 deletions

View File

@ -440,11 +440,11 @@ func (devices *DeviceSet) initDevmapper(doInit bool) error {
hasMetadata := devices.hasImage("metadata")
if !doInit && !hasData {
return errors.New("Looback data file not found")
return errors.New("Loopback data file not found")
}
if !doInit && !hasMetadata {
return errors.New("Looback metadata file not found")
return errors.New("Loopback metadata file not found")
}
createdLoopback := !hasData || !hasMetadata