2004-08-14 Marco Gerards <metgerards@student.han.nl>

* include/grub/arg.h (GRUB_ARG_OPTION_OPTIONAL): Surround macro
	with parentheses.

	* fs/ext2.c (FILETYPE_UNKNOWN): New macro.
	(grub_ext2_dir): In case the directory entry type is unknown, read
	it from the inode.
This commit is contained in:
marco_g 2004-08-13 22:33:35 +00:00
parent 0ef123f617
commit cc61b58f99
3 changed files with 21 additions and 2 deletions

View file

@ -38,7 +38,7 @@ enum grub_arg_type
typedef enum grub_arg_type grub_arg_type_t;
/* Flags for the option field op grub_arg_option. */
#define GRUB_ARG_OPTION_OPTIONAL 1 << 1
#define GRUB_ARG_OPTION_OPTIONAL (1 << 1)
enum grub_key_type
{