Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 4F233431FBF for ; Tue, 23 Feb 2010 18:28:17 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.555 X-Spam-Level: X-Spam-Status: No, score=-0.555 tagged_above=-999 required=5 tests=[AWL=0.555, BAYES_05=-1.11] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Q7FPzqaxtqki for ; Tue, 23 Feb 2010 18:28:16 -0800 (PST) Received: from dmz-mailsec-scanner-2.mit.edu (DMZ-MAILSEC-SCANNER-2.MIT.EDU [18.9.25.13]) by olra.theworths.org (Postfix) with ESMTP id 5B0BF431FBC for ; Tue, 23 Feb 2010 18:28:16 -0800 (PST) X-AuditID: 1209190d-b7cf8ae00000096b-f9-4b848d91f638 Received: from mailhub-auth-1.mit.edu (MAILHUB-AUTH-1.MIT.EDU [18.9.21.35]) by dmz-mailsec-scanner-2.mit.edu (Symantec Brightmail Gateway) with SMTP id 07.33.02411.19D848B4; Tue, 23 Feb 2010 21:23:13 -0500 (EST) Received: from outgoing.mit.edu (OUTGOING-AUTH.MIT.EDU [18.7.22.103]) by mailhub-auth-1.mit.edu (8.13.8/8.9.2) with ESMTP id o1O2NDRE010143; Tue, 23 Feb 2010 21:23:13 -0500 Received: from localhost.localdomain (ET-NINETY-THREE.MIT.EDU [18.208.1.93]) (authenticated bits=0) (User authenticated as davidben@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.6/8.12.4) with ESMTP id o1O2NTis021532 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 23 Feb 2010 21:23:34 -0500 (EST) From: David Benjamin To: notmuch@notmuchmail.org Date: Tue, 23 Feb 2010 21:23:00 -0500 Message-Id: <1266978183-19698-2-git-send-email-davidben@mit.edu> X-Mailer: git-send-email 1.7.0.18.g39b3 In-Reply-To: <1266978183-19698-1-git-send-email-davidben@mit.edu> References: <1266978183-19698-1-git-send-email-davidben@mit.edu> X-Brightmail-Tracker: AAAAAA== Subject: [notmuch] [PATCH 1/4] lib/database.cc: Fix function name in comment X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 24 Feb 2010 02:28:17 -0000 notmuch_message_add_filename has a leading underscore in the name. Signed-off-by: David Benjamin --- lib/database.cc | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/lib/database.cc b/lib/database.cc index 2b5b64d..1bb24ec 100644 --- a/lib/database.cc +++ b/lib/database.cc @@ -739,7 +739,7 @@ notmuch_database_upgrade (notmuch_database_t *notmuch, /* Before version 1, each message document had its filename in the * data field. Copy that into the new format by calling - * notmuch_message_add_filename. + * _notmuch_message_add_filename. */ if (version < 1) { notmuch_query_t *query = notmuch_query_create (notmuch, ""); -- 1.7.0.18.g39b3