Merge pull request #11912 from sunyuan3/typo

Fix a typo in daemon/networkdriver/ipallocator/allocator.go
This commit is contained in:
Doug Davis 2015-03-29 21:59:50 -04:00
commit d95fae062b
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ func (allocated *allocatedMap) checkIP(ip net.IP) (net.IP, error) {
}
// return an available ip if one is currently available. If not,
// return the next available ip for the nextwork
// return the next available ip for the network
func (allocated *allocatedMap) getNextIP() (net.IP, error) {
pos := big.NewInt(0).Set(allocated.last)
allRange := big.NewInt(0).Sub(allocated.end, allocated.begin)