[PATCH 07/10] lib: constify argument to notmuch_database_status_string
authorDavid Bremner <david@tethera.net>
Sun, 7 Jun 2015 15:02:00 +0000 (17:02 +0200)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 21:48:59 +0000 (14:48 -0700)
82/678cda6728c84446780d12007139e94f0f3d53 [new file with mode: 0644]

diff --git a/82/678cda6728c84446780d12007139e94f0f3d53 b/82/678cda6728c84446780d12007139e94f0f3d53
new file mode 100644 (file)
index 0000000..15a1fa4
--- /dev/null
@@ -0,0 +1,83 @@
+Return-Path: <bremner@tesseract.cs.unb.ca>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 64A7C6DE119C\r
+ for <notmuch@notmuchmail.org>; Sun,  7 Jun 2015 08:04:45 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.222\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.222 tagged_above=-999 required=5 tests=[AWL=0.212, \r
+ T_HEADER_FROM_DIFFERENT_DOMAINS=0.01] autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id UKYKFlaT7zLa for <notmuch@notmuchmail.org>;\r
+ Sun,  7 Jun 2015 08:04:43 -0700 (PDT)\r
+Received: from mx.xen14.node3324.gplhost.com (gitolite.debian.net\r
+ [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 960BB6DE1579\r
+ for <notmuch@notmuchmail.org>; Sun,  7 Jun 2015 08:04:43 -0700 (PDT)\r
+Received: from remotemail by mx.xen14.node3324.gplhost.com with local (Exim\r
+ 4.80) (envelope-from <bremner@tesseract.cs.unb.ca>)\r
+ id 1Z1c7F-0004p9-QE; Sun, 07 Jun 2015 15:04:01 +0000\r
+Received: (nullmailer pid 7862 invoked by uid 1000); Sun, 07 Jun 2015\r
+ 15:02:11 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 07/10] lib: constify argument to\r
+ notmuch_database_status_string\r
+Date: Sun,  7 Jun 2015 17:02:00 +0200\r
+Message-Id: <1433689323-7520-8-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.1.4\r
+In-Reply-To: <1433689323-7520-1-git-send-email-david@tethera.net>\r
+References: <1433689323-7520-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 07 Jun 2015 15:04:45 -0000\r
+\r
+We don't modify the database struct, so no harm in committing to that.\r
+---\r
+ lib/database.cc | 2 +-\r
+ lib/notmuch.h   | 2 +-\r
+ 2 files changed, 2 insertions(+), 2 deletions(-)\r
+\r
+diff --git a/lib/database.cc b/lib/database.cc\r
+index 15619c3..3ef8eaa 100644\r
+--- a/lib/database.cc\r
++++ b/lib/database.cc\r
+@@ -2578,7 +2578,7 @@ notmuch_database_get_all_tags (notmuch_database_t *db)\r
+ }\r
\r
+ const char *\r
+-notmuch_database_status_string (notmuch_database_t *notmuch)\r
++notmuch_database_status_string (const notmuch_database_t *notmuch)\r
+ {\r
+     return notmuch->status_string;\r
+ }\r
+diff --git a/lib/notmuch.h b/lib/notmuch.h\r
+index 46115c8..56d5ac4 100644\r
+--- a/lib/notmuch.h\r
++++ b/lib/notmuch.h\r
+@@ -308,7 +308,7 @@ notmuch_database_open_verbose (const char *path,\r
+  *\r
+  */\r
+ const char *\r
+-notmuch_database_status_string (notmuch_database_t *notmuch);\r
++notmuch_database_status_string (const notmuch_database_t *notmuch);\r
\r
+ /**\r
+  * Commit changes and close the given notmuch database.\r
+-- \r
+2.1.4\r
+\r