Module Name:    src
Committed By:   martin
Date:           Sun Jul 26 12:43:27 UTC 2020

Modified Files:
        src/tests/sys/crypto/aes: t_aes.c

Log Message:
Add missing include to fix the build on architectures w/o any special
accelerated AES implementation.


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/tests/sys/crypto/aes/t_aes.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/sys/crypto/aes/t_aes.c
diff -u src/tests/sys/crypto/aes/t_aes.c:1.1 src/tests/sys/crypto/aes/t_aes.c:1.2
--- src/tests/sys/crypto/aes/t_aes.c:1.1	Tue Jun 30 20:32:11 2020
+++ src/tests/sys/crypto/aes/t_aes.c	Sun Jul 26 12:43:27 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: t_aes.c,v 1.1 2020/06/30 20:32:11 riastradh Exp $	*/
+/*	$NetBSD: t_aes.c,v 1.2 2020/07/26 12:43:27 martin Exp $	*/
 
 /*-
  * Copyright (c) 2020 The NetBSD Foundation, Inc.
@@ -29,6 +29,7 @@
 #include <sys/types.h>
 
 #include <crypto/aes/aes.h>
+#include <crypto/aes/aes_impl.h>
 #include <crypto/aes/aes_bear.h>
 
 #if defined(__i386__) || defined(__x86_64__)

Reply via email to