mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-11 07:24:46 +00:00
A last minute fix from Vincent fixing the text representation
of device paths containing IPv4 device path nodes. A missing break; ended up printing IPv4(5.6.7.8,TCP,UDP,0x6,DHCP,1.2.3.4,9.10.11.12,255.255.255.0) instead of IPv4(5.6.7.8,TCP,DHCP,1.2.3.4,9.10.11.12,255.255.255.0) -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEgWII69YpahbL5iK5gS8AYozs+qIFAmfj3+QACgkQgS8AYozs +qJRrxAAgkMq+ll6G4+UkCozPNhHP0/Tt72lz3mP/kJmzbazrsXRixKde77WtGG+ rU4YDh01DFB2/zySCClhb+27K2Nia05xtbPki6LD57mtqPOmSYW/3TlEFCU7Kq/3 y8QXsB1mYB1j9Nd1PdYZd3hdp8nyof9v+qrP9g3+FHtXnbkJtcMlVqo7dd3mMTbQ RjwKOZTUnFyiJ0uRinfFK1G+AUdA4MXW/kn7JRPoRsQLBPrJ9K9qrBj07MUe3Lqj 5IRu3+jb/oKIf7LjveGmk+DPI1MGiyt1CxnLyFlnLR3rDXs3QYIaXyNA0I8VpzKr p/qbmGIFeHYdQwcd0TOjTFcFzjv/Y1fRY8wmN5QJl+qt/cVC3rs6Zhj9xUFgJ3Cg pRv4kh/DH6Si+v672ReClCNZy2GiiFNCvU4GtahaG8KzZVKy0WNEUmbVQvqunedQ Toq5OjwbqL+7hPMr8O6v77E8f5frwaPvqArP1KzymF0/n3ErZwYxFrSMYzJR0EYy oqTn/zyudgqBDt5B/5EvRUeqAUHk57Zem2Km/JU9ys4U4euu8pR63mIDSjjyqkKY 7duqoOugpzUXzgk2zmyGSvZhT1WP2f7mVswRJWEIj8E2AUMs22+dR4XPY82Rhc1E wG+lAuZ8OCr1Pdc3d1jEzxlGYmij3P/xXjXFnhFlOMWnINFydrw= =SReT -----END PGP SIGNATURE----- Merge tag 'efi-master-26032025' of https://source.denx.de/u-boot/custodians/u-boot-tpm A last minute fix from Vincent fixing the text representation of device paths containing IPv4 device path nodes. A missing break; ended up printing IPv4(5.6.7.8,TCP,UDP,0x6,DHCP,1.2.3.4,9.10.11.12,255.255.255.0) instead of IPv4(5.6.7.8,TCP,DHCP,1.2.3.4,9.10.11.12,255.255.255.0)
This commit is contained in:
commit
3f9e0349c3
1 changed files with 3 additions and 0 deletions
|
@ -181,10 +181,13 @@ static char *dp_msging(char *s, struct efi_device_path *dp)
|
|||
switch (idp->protocol) {
|
||||
case IPPROTO_TCP:
|
||||
s += sprintf(s, "TCP,");
|
||||
break;
|
||||
case IPPROTO_UDP:
|
||||
s += sprintf(s, "UDP,");
|
||||
break;
|
||||
default:
|
||||
s += sprintf(s, "0x%x,", idp->protocol);
|
||||
break;
|
||||
}
|
||||
s += sprintf(s, idp->static_ip_address ? "Static" : "DHCP");
|
||||
s += sprintf(s, ",%pI4", &idp->local_ip_address);
|
||||
|
|
Loading…
Add table
Reference in a new issue