29 lines
638 B
Diff
29 lines
638 B
Diff
|
From c6ecc2923b8072e9cb24806b1c1b92f63016fd63 Mon Sep 17 00:00:00 2001
|
||
|
From: Gary Lin <glin@suse.com>
|
||
|
Date: Thu, 4 Jan 2018 14:31:51 +0800
|
||
|
Subject: [PATCH] httpboot: include console.h
|
||
|
|
||
|
in_protocol is declared in console.h, so httpboot.c has to include the
|
||
|
header.
|
||
|
|
||
|
Signed-off-by: Gary Lin <glin@suse.com>
|
||
|
---
|
||
|
httpboot.c | 1 +
|
||
|
1 file changed, 1 insertion(+)
|
||
|
|
||
|
diff --git a/httpboot.c b/httpboot.c
|
||
|
index 058704f..b753405 100644
|
||
|
--- a/httpboot.c
|
||
|
+++ b/httpboot.c
|
||
|
@@ -34,6 +34,7 @@
|
||
|
#include <efi.h>
|
||
|
#include <efilib.h>
|
||
|
#include "str.h"
|
||
|
+#include "console.h"
|
||
|
#include "Http.h"
|
||
|
#include "Ip4Config2.h"
|
||
|
#include "Ip6Config.h"
|
||
|
--
|
||
|
2.15.1
|
||
|
|