mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] commands: hashsum: Fix endif typos
@ 2022-01-07  9:27 Enguerrand de Ribaucourt
  2022-01-10  8:20 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Enguerrand de Ribaucourt @ 2022-01-07  9:27 UTC (permalink / raw)
  To: barebox; +Cc: Enguerrand de Ribaucourt

Fix the comments in endif to correspond to the symbol of their
ifdef.

Signed-off-by: Enguerrand de Ribaucourt <enguerrand.de-ribaucourt@savoirfairelinux.com>
---
 commands/hashsum.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/commands/hashsum.c b/commands/hashsum.c
index bfacee0b9..308faa172 100644
--- a/commands/hashsum.c
+++ b/commands/hashsum.c
@@ -74,7 +74,7 @@ BAREBOX_CMD_START(md5sum)
 	BAREBOX_CMD_HELP(cmd_md5sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_MD5SUM */
+#endif /* CONFIG_CMD_MD5SUM */
 
 #ifdef CONFIG_CMD_SHA1SUM
 
@@ -95,7 +95,7 @@ BAREBOX_CMD_START(sha1sum)
 	BAREBOX_CMD_HELP(cmd_sha1sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_SHA1SUM */
+#endif /* CONFIG_CMD_SHA1SUM */
 
 #ifdef CONFIG_CMD_SHA224SUM
 
@@ -116,7 +116,7 @@ BAREBOX_CMD_START(sha224sum)
 	BAREBOX_CMD_HELP(cmd_sha224sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_SHA224SUM */
+#endif /* CONFIG_CMD_SHA224SUM */
 
 #ifdef CONFIG_CMD_SHA256SUM
 
@@ -137,7 +137,7 @@ BAREBOX_CMD_START(sha256sum)
 	BAREBOX_CMD_HELP(cmd_sha256sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_SHA256SUM */
+#endif /* CONFIG_CMD_SHA256SUM */
 
 #ifdef CONFIG_CMD_SHA384SUM
 
@@ -158,7 +158,7 @@ BAREBOX_CMD_START(sha384sum)
 	BAREBOX_CMD_HELP(cmd_sha384sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_SHA384SUM */
+#endif /* CONFIG_CMD_SHA384SUM */
 
 #ifdef CONFIG_CMD_SHA512SUM
 
@@ -179,4 +179,4 @@ BAREBOX_CMD_START(sha512sum)
 	BAREBOX_CMD_HELP(cmd_sha512sum_help)
 BAREBOX_CMD_END
 
-#endif /* CMD_CMD_SHA512SUM */
+#endif /* CONFIG_CMD_SHA512SUM */
-- 
2.25.1


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-01-10  8:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-07  9:27 [PATCH] commands: hashsum: Fix endif typos Enguerrand de Ribaucourt
2022-01-10  8:20 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox