From couchdb-commits-return-818-apmail-incubator-couchdb-commits-archive=incubator.apache.org@incubator.apache.org Fri Jul 25 15:58:12 2008 Return-Path: Delivered-To: apmail-incubator-couchdb-commits-archive@locus.apache.org Received: (qmail 69008 invoked from network); 25 Jul 2008 15:58:11 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Jul 2008 15:58:11 -0000 Received: (qmail 29540 invoked by uid 500); 25 Jul 2008 15:58:11 -0000 Delivered-To: apmail-incubator-couchdb-commits-archive@incubator.apache.org Received: (qmail 29522 invoked by uid 500); 25 Jul 2008 15:58:11 -0000 Mailing-List: contact couchdb-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: couchdb-dev@incubator.apache.org Delivered-To: mailing list couchdb-commits@incubator.apache.org Received: (qmail 29513 invoked by uid 99); 25 Jul 2008 15:58:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 08:58:11 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 25 Jul 2008 15:57:25 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 3EFC8238888A; Fri, 25 Jul 2008 08:57:21 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r679843 - /incubator/couchdb/trunk/src/couchdb/couch_httpd.erl Date: Fri, 25 Jul 2008 15:57:21 -0000 To: couchdb-commits@incubator.apache.org From: cmlenz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080725155721.3EFC8238888A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cmlenz Date: Fri Jul 25 08:57:20 2008 New Revision: 679843 URL: http://svn.apache.org/viewvc?rev=679843&view=rev Log: Fix to previous commit r679840. Modified: incubator/couchdb/trunk/src/couchdb/couch_httpd.erl Modified: incubator/couchdb/trunk/src/couchdb/couch_httpd.erl URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch_httpd.erl?rev=679843&r1=679842&r2=679843&view=diff ============================================================================== --- incubator/couchdb/trunk/src/couchdb/couch_httpd.erl (original) +++ incubator/couchdb/trunk/src/couchdb/couch_httpd.erl Fri Jul 25 08:57:20 2008 @@ -1013,5 +1013,6 @@ end. server_header() -> + OTPVersion = "R" ++ integer_to_list(erlang:system_info(compat_rel)) ++ "B", [{"Server", "CouchDB/" ++ couch_server:get_version() ++ - " (Erlang OTP/R" ++ erlang:system_info(compat_rel) ++ "B)"}]. + " (Erlang OTP/" ++ OTPVersion ++ ")"}].