From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pete Zaitcev Subject: [Patch 3/3] chunkd: add include w/prototypes Date: Tue, 30 Mar 2010 20:58:16 -0600 Message-ID: <20100330205816.21935cb0@redhat.com> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: Sender: hail-devel-owner@vger.kernel.org List-ID: Content-Type: text/plain; charset="us-ascii" To: Jeff Garzik Cc: Project Hail List Caught by gcc: the prototypes are not in the header that we expected. Signed-off-by: Pete Zaitcev --- 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 #include #include +#include /* 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