1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00
moby--moby/libnetwork/drivers/windows
Chris Telfer 06922d2d81 Use fmt precision to limit string length
The previous code used string slices to limit the length of certain
fields like endpoint or sandbox IDs.  This assumes that these strings
are at least as long as the slice length.  Unfortunately, some sandbox
IDs can be smaller than 7 characters.   This fix addresses this issue
by systematically converting format string calls that were taking
fixed-slice arguments to use a precision specifier in the string format
itself.  From the golang fmt package documentation:

    For strings, byte slices and byte arrays, however, precision limits
    the length of the input to be formatted (not the size of the output),
    truncating if necessary. Normally it is measured in runes, but for
    these types when formatted with the %x or %X format it is measured
    in bytes.

This nicely fits the desired behavior: it will limit the number of
runes considered for string interpolation to the precision value.

Signed-off-by: Chris Telfer <ctelfer@docker.com>
2018-07-05 17:44:04 -04:00
..
overlay Use fmt precision to limit string length 2018-07-05 17:44:04 -04:00
labels.go libnetwork Windows driver support for outboundnat policy via generic options 2018-02-05 17:07:26 -08:00
windows.go Use fmt precision to limit string length 2018-07-05 17:44:04 -04:00
windows_store.go Use fmt precision to limit string length 2018-07-05 17:44:04 -04:00
windows_test.go DNS support 2016-09-20 13:02:02 -07:00