From ae59114af9b33257e5121a24dfcca3834cf6d46f Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 8 Dec 2016 19:37:49 +0100 Subject: [PATCH] =?utf8?q?gpt-auto-generator:=20rename=20add=5Fboot()=20?= =?utf8?q?=E2=86=92=20add=5Fesp()?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit After all, the call doesn't necessarily mount /boot anymore, but possibly /efi now. --- src/gpt-auto-generator/gpt-auto-generator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/gpt-auto-generator/gpt-auto-generator.c b/src/gpt-auto-generator/gpt-auto-generator.c index 0f95f0d813b..a60905de942 100644 --- a/src/gpt-auto-generator/gpt-auto-generator.c +++ b/src/gpt-auto-generator/gpt-auto-generator.c @@ -449,7 +449,7 @@ static int add_automount( return 0; } -static int add_boot(const char *what) { +static int add_esp(const char *what) { const char *esp; int r; @@ -547,7 +547,7 @@ static int add_boot(const char *what) { 120 * USEC_PER_SEC); } #else -static int add_boot(const char *what) { +static int add_esp(const char *what) { return 0; } #endif @@ -789,7 +789,7 @@ static int enumerate_partitions(dev_t devnum) { } if (boot) { - k = add_boot(boot); + k = add_esp(boot); if (k < 0) r = k; } -- 2.39.2