diff --git a/grub-core/net/net.c b/grub-core/net/net.c index cc1e57744..0a2cef7e4 100644 --- a/grub-core/net/net.c +++ b/grub-core/net/net.c @@ -1280,6 +1280,10 @@ grub_net_open_real (const char *name) const char *comma; char *colon; comma = grub_strchr (name, ','); + if (!comma) + { + comma = grub_strchr (name, ';'); + } colon = grub_strchr (name, ':'); if (colon) {