GUAC-1138: Use "ones" instead of "1's".

This commit is contained in:
Michael Jumper
2015-03-28 10:25:12 -07:00
parent d65853422c
commit cc96b0ee33

View File

@@ -113,13 +113,13 @@ angular.module('list').factory('IPv6Network', [
// Only generate up to 128 bits // Only generate up to 128 bits
bits = Math.min(128, bits); bits = Math.min(128, bits);
// Add any contiguous 16-bit sections of 1's // Add any contiguous 16-bit sections of ones
while (bits >= 16) { while (bits >= 16) {
netmask.push(0xFFFF); netmask.push(0xFFFF);
bits -= 16; bits -= 16;
} }
// Add remaining 1's // Add remaining ones
if (bits > 0 && bits <= 16) if (bits > 0 && bits <= 16)
netmask.push(0xFFFF & (0xFFFF << (16 - bits))); netmask.push(0xFFFF & (0xFFFF << (16 - bits)));