Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9BF3010680 for ; Thu, 26 Dec 2013 12:27:02 +0000 (UTC) Received: (qmail 37806 invoked by uid 500); 26 Dec 2013 12:27:00 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 37768 invoked by uid 500); 26 Dec 2013 12:26:53 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 37760 invoked by uid 99); 26 Dec 2013 12:26:51 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 26 Dec 2013 12:26:51 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.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; Thu, 26 Dec 2013 12:26:49 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 737BA2388868; Thu, 26 Dec 2013 12:26:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1553471 - /subversion/trunk/subversion/libsvn_client/commit_util.c Date: Thu, 26 Dec 2013 12:26:28 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131226122628.737BA2388868@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhuijben Date: Thu Dec 26 12:26:28 2013 New Revision: 1553471 URL: http://svn.apache.org/r1553471 Log: * subversion/libsvn_client/commit_util.c (fixup_commit_error): Handle another error code with a nicer message. Modified: subversion/trunk/subversion/libsvn_client/commit_util.c Modified: subversion/trunk/subversion/libsvn_client/commit_util.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/commit_util.c?rev=1553471&r1=1553470&r2=1553471&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/commit_util.c (original) +++ subversion/trunk/subversion/libsvn_client/commit_util.c Thu Dec 26 12:26:28 2013 @@ -102,6 +102,7 @@ fixup_commit_error(const char *local_abs } else if (svn_error_find_cause(err, SVN_ERR_FS_NO_LOCK_TOKEN) || err->apr_err == SVN_ERR_FS_LOCK_OWNER_MISMATCH + || err->apr_err == SVN_ERR_FS_BAD_LOCK_TOKEN || err->apr_err == SVN_ERR_RA_NOT_LOCKED) { if (ctx->notify_func2)