| Summary: | Wrong include path in man (9) for rijndael | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Documentation | Reporter: | watchman <watchman> | ||||
| Component: | Books & Articles | Assignee: | Hiten Pandya <hmp> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
Responsible Changed From-To: freebsd-doc->hmp I will commit a fix. State Changed From-To: open->closed Fix has been committed, thanks! |
The manual page for rijndael contains an include path that is incorrect. The manual states: SYNOPSIS #include <sys/types.h> #include <crypto/rijndael/rijndael.h> But, Rijndael is actually locates in: /usr/include/crypto/rijndael.h That is, in the crypto subdir, not in a specific Rijndael directory. Fix: Apply the following patch: How-To-Repeat: man rijndael and then try to use the includes found in the man page in an application that uses Rijndael: <qote> gcc -O -o testRijndael rijndael_regtest.c rijndael_regtest.c:20:38: crypto/rijndael/rijndael.h: No such file or directory *** Error code 1 </quote>