Received: by taz.hyperreal.com (8.7.6/V2.0) id QAA04539; Tue, 15 Oct 1996 16:34:47 -0700 (PDT) Received: from luers.qosina.com by taz.hyperreal.com (8.7.6/V2.0) with ESMTP id QAA04532; Tue, 15 Oct 1996 16:34:45 -0700 (PDT) Received: (from awm@localhost) by luers.qosina.com (8.7.6/8.7.3) id TAA31616 for new-httpd@hyperreal.com; Tue, 15 Oct 1996 19:33:16 -0400 From: Aram Mirzadeh Message-Id: <199610152333.TAA31616@luers.qosina.com> Subject: linux warning fix To: new-httpd@hyperreal.com (apache Group) Date: Tue, 15 Oct 1996 19:33:15 -0400 (EDT) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 8bit Sender: owner-new-httpd@apache.org Precedence: bulk Reply-To: new-httpd@hyperreal.com Someone else got to mod_log_config... but this also produces the same warning under Linux with -Wall: =================================================================== RCS file: /export/home/cvs/apache/src/http_protocol.c,v retrieving revision 1.55 diff -r1.55 http_protocol.c 232c232 < sprintf(boundary, "%lx%lx", r->request_time, getpid()); --- > sprintf(boundary, "%lx%lx", r->request_time, (unsigned long)getpid()); Index: mod_log_config.c -- /* * Aram Mirzadeh, MIS Manager, Qosina Corp. http://www.qosina.com/~awm/ * Apache Development Team, awm@hyperreal.com http://www.hyperreal.com/ * PGP Key - http://www.qosina.com/~awm/pgpkey.html * BE 49 9D F6 2A A7 22 FC 02 E9 1E 3D F7 0C 67 A0 * * The wise man doesn't give the right answers, he poses the right questions. * --Claude Levi-Strauss */