Date: Fri, 13 May 2016 11:24:56 +0000 (UTC) From: Garrett Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r299661 - head/sys/boot/geli Message-ID: <201605131124.u4DBOuWX018631@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ngie Date: Fri May 13 11:24:55 2016 New Revision: 299661 URL: https://svnweb.freebsd.org/changeset/base/299661 Log: Add geliboot_crypt(..) definition to geliboot.h to mute a -Wimplicit-function-declaration warning Reported by: clang MFC after: 1 week Sponsored by: EMC / Isilon Storage Division Modified: head/sys/boot/geli/geliboot.h Modified: head/sys/boot/geli/geliboot.h ============================================================================== --- head/sys/boot/geli/geliboot.h Fri May 13 11:20:21 2016 (r299660) +++ head/sys/boot/geli/geliboot.h Fri May 13 11:24:55 2016 (r299661) @@ -86,4 +86,7 @@ int geli_decrypt(u_int algo, u_char *dat const u_char *key, size_t keysize, const uint8_t* iv); int geli_passphrase(char *pw, int disk, int parttype, int part, struct dsk *dskp); +int geliboot_crypt(u_int algo, int enc, u_char *data, size_t datasize, + const u_char *key, size_t keysize, u_char *iv); + #endif /* _GELIBOOT_H_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605131124.u4DBOuWX018631>