]> git.sur5r.net Git - u-boot/commit
miiphy: use strncpy() not sprintf()
authorLaurence Withers <lwithers@guralp.com>
Thu, 14 Jul 2011 23:21:45 +0000 (23:21 +0000)
committerWolfgang Denk <wd@denx.de>
Tue, 26 Jul 2011 12:00:24 +0000 (14:00 +0200)
commit07c07635b4f6d4ee2a03cd508beeeaccde4b9d7e
tree6d3f1fca1ea7566f73e9311b3a21a79173df2357
parent9e9579bbf9780ced1153371cdc6aeb1ea8f0c0b6
miiphy: use strncpy() not sprintf()

In miiphy_register() the new device's name was initialised by passing a
string parameter as the format string to sprintf(). As this would cause
problems if it ever contained a '%' symbol, switch to using strncpy()
instead.

Signed-off-by: Laurence Withers <lwithers@guralp.com>
Cc: Andy Fleming <afleming@freescale.com>
common/miiphyutil.c