Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 20679 invoked from network); 16 Apr 2004 18:22:02 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 16 Apr 2004 18:22:02 -0000 Received: (qmail 21931 invoked by uid 500); 16 Apr 2004 18:21:52 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 21829 invoked by uid 500); 16 Apr 2004 18:21:51 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 21813 invoked by uid 500); 16 Apr 2004 18:21:51 -0000 Delivered-To: apmail-apache-1.3-cvs@apache.org Received: (qmail 21809 invoked from network); 16 Apr 2004 18:21:51 -0000 Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by daedalus.apache.org with SMTP; 16 Apr 2004 18:21:51 -0000 Received: (qmail 20610 invoked by uid 1078); 16 Apr 2004 18:22:00 -0000 Date: 16 Apr 2004 18:22:00 -0000 Message-ID: <20040416182200.20609.qmail@minotaur.apache.org> From: jim@apache.org To: apache-1.3-cvs@apache.org Subject: cvs commit: apache-1.3/src/main http_core.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N jim 2004/04/16 11:21:59 Modified: src/main http_core.c Log: We are constructing out of the pointer vals of these entities Revision Changes Path 1.334 +6 -7 apache-1.3/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /home/cvs/apache-1.3/src/main/http_core.c,v retrieving revision 1.333 retrieving revision 1.334 diff -u -r1.333 -r1.334 --- http_core.c 15 Apr 2004 15:51:51 -0000 1.333 +++ http_core.c 16 Apr 2004 18:21:59 -0000 1.334 @@ -563,13 +563,12 @@ * But then again - you should use AuthDigestRealmSeed in your config * file if you care. So the adhoc value should do. */ - return ap_psprintf(r->pool,"%lu%lu%lu%lu%lu%s", - *(unsigned long *)&((r->connection->local_addr).sin_addr ), - *(unsigned long *)ap_user_name, - *(unsigned long *)ap_listeners, - *(unsigned long *)ap_server_argv0, - *(unsigned long *)ap_pid_fname, - "WHAT_THE_HECK_GOES_HERE?"); + return ap_psprintf(r->pool,"%pp%pp%pp%pp%pp", + (void *)&((r->connection->local_addr).sin_addr ), + (void *)ap_user_name, + (void *)ap_listeners, + (void *)ap_server_argv0, + (void *)ap_pid_fname); } API_EXPORT(const char *) ap_default_type(request_rec *r)