mirror of
https://git.proxmox.com/git/grub2
synced 2025-05-28 16:16:32 +00:00
* grub-core/net/net.c (grub_net_addr_to_str): Don't translate
"temporary" since it's used in identifier and is limited in space.
This commit is contained in:
parent
fda9d1012e
commit
55b20e588c
@ -1,3 +1,8 @@
|
||||
2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/net/net.c (grub_net_addr_to_str): Don't translate
|
||||
"temporary" since it's used in identifier and is limited in space.
|
||||
|
||||
2012-03-08 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* po/POTFILES.in: Regenerate. Include *.h since they contain
|
||||
|
@ -684,7 +684,7 @@ grub_net_addr_to_str (const grub_net_network_level_address_t *target, char *buf)
|
||||
{
|
||||
case GRUB_NET_NETWORK_LEVEL_PROTOCOL_DHCP_RECV:
|
||||
/* TRANSLATORS: it refers to the network address. */
|
||||
grub_strcpy (buf, _("temporary"));
|
||||
grub_strncpy (buf, "temporary", GRUB_NET_MAX_STR_ADDR_LEN);
|
||||
return;
|
||||
case GRUB_NET_NETWORK_LEVEL_PROTOCOL_IPV6:
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user