[Patch 3/3] chunkd: add include w/prototypes
Pete Zaitcev <[email protected]>
| Newsgroups | org.kernel.vger.hail-devel |
|---|---|
| Message-ID | <[email protected]> |
Caught by gcc: the prototypes are not in the header that we expected. Signed-off-by: Pete Zaitcev <[email protected]> --- lib/chunksrv.c | 1 + 1 file changed, 1 insertion(+) diff -urp -X dontdiff chunkd-m/lib/chunksrv.c chunkd-tip/lib/chunksrv.c --- chunkd-m/lib/chunksrv.c 2010-03-30 15:08:36.000000000 -0600 +++ chunkd-tip/lib/chunksrv.c 2010-03-23 18:55:46.000000000 -0600 @@ -24,6 +24,7 @@ #include <openssl/hmac.h> #include <glib.h> #include <chunk_msg.h> +#include <chunksrv.h> /* req_len, chreq_sign proto */ size_t req_len(const struct chunksrv_req *req) { diff -urp -X dontdiff chunkd-m/server/cldu.c chunkd-tip/server/cldu.c