summaryrefslogtreecommitdiff
path: root/net/bootp.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2022-08-08 15:04:56 -0400
committerTom Rini <trini@konsulko.com>2022-08-08 15:04:56 -0400
commitae0e1d68a94a1d0e9e3b22a254312da9c9a7c01f (patch)
treef364eb6eecd8211f8aac5190fdfa83cad5e46962 /net/bootp.c
parent56edbb5eafc53cd7b34cd231ec11c7e5eb576c9f (diff)
parent5bd4f31fea36cf4106d6314efd33ba49efcaeded (diff)
Merge branch '2022-08-08-networking-updates'
After checking with Ramon, take a number of reviewed network patches. This includes: - A number of dwc_eth_qos updates, mpc8xx_fec DM migration, NPCM7xx EMAC driver. - Other assorted minor updates
Diffstat (limited to 'net/bootp.c')
-rw-r--r--net/bootp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bootp.c b/net/bootp.c
index a544bfcc234..b260d5d09e6 100644
--- a/net/bootp.c
+++ b/net/bootp.c
@@ -59,7 +59,7 @@ ulong bootp_start;
ulong bootp_timeout;
char net_nis_domain[32] = {0,}; /* Our NIS domain */
char net_hostname[32] = {0,}; /* Our hostname */
-char net_root_path[64] = {0,}; /* Our bootpath */
+char net_root_path[CONFIG_BOOTP_MAX_ROOT_PATH_LEN] = {0,}; /* Our bootpath */
static ulong time_taken_max;