]> git.proxmox.com Git - mirror_iproute2.git/commit
get rid of unnecessary fgets() buffer size limitation
authorPhil Sutter <phil@nwl.cc>
Sat, 28 Nov 2015 00:00:05 +0000 (01:00 +0100)
committerStephen Hemminger <shemming@brocade.com>
Sun, 29 Nov 2015 19:48:24 +0000 (11:48 -0800)
commit61170fd88d264c6a6c9d2c2f4433cdacc3385e93
treec51d894e133b3d64fa534cf64f1caf5f0bb7e97c
parentd572ed4d0af79eb597469d3f1a84456782c64f24
get rid of unnecessary fgets() buffer size limitation

fgets() will read at most size-1 bytes into the buffer and add a
terminating null-char at the end. Therefore it is not necessary to pass
a reduced buffer size when calling it.

This change was generated using the following semantic patch:

@@
identifier buf, fp;
@@
- fgets(buf, sizeof(buf) - 1, fp)
+ fgets(buf, sizeof(buf), fp)

Signed-off-by: Phil Sutter <phil@nwl.cc>
misc/arpd.c
misc/ss.c