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 CEFAB4196F0 for ; Tue, 6 Apr 2010 21:48:07 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.1 X-Spam-Level: X-Spam-Status: No, score=-0.1 tagged_above=-999 required=5 tests=[BAYES_40=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_NONE=-0.0001] 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 q-X2sQKZ-G+g for ; Tue, 6 Apr 2010 21:48:07 -0700 (PDT) Received: from mail-ew0-f219.google.com (mail-ew0-f219.google.com [209.85.219.219]) by olra.theworths.org (Postfix) with ESMTP id 0D985431FC1 for ; Tue, 6 Apr 2010 21:48:06 -0700 (PDT) Received: by ewy19 with SMTP id 19so295811ewy.2 for ; Tue, 06 Apr 2010 21:48:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:received:message-id :subject:from:to:content-type; bh=ebFFWKzaiGCI7rMQH1gVRHsO1bPVvFoVcGvb+41kH38=; b=IDTq5cZY/jjwb8g6B+Pk14faKgIUShyxXSKScWzq7cmb4rqRkikhIPtCQuKZFUy9Ki IRHCeftyzydlr8B5esnOYXIhCmxpnHpsg6WQrzG98/jX0hfhiTlazmes56NSEJrYMCiW hHYBrwhpteN8OB0qSeNGVjnSF3D5T0cToPtfo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=cLgWlXijbWMwKWFOqVUywKo8S6Yj1dGwkGcl86VtGFgsh34IJBd3N+MkeYpbrNmqr+ jxHAjU32UZez6oCoWrc+yeNONht8l/+N3x5EtG3c4TlKUDQI78A47TYGPVVqifsP2lVI Z4GqbaykEzwx17O1ZTqiL+nqVTTTSiHrgBCaQ= MIME-Version: 1.0 Received: by 10.213.36.20 with HTTP; Tue, 6 Apr 2010 21:48:04 -0700 (PDT) Date: Wed, 7 Apr 2010 00:48:04 -0400 Received: by 10.213.54.12 with SMTP id o12mr1623308ebg.35.1270615685295; Tue, 06 Apr 2010 21:48:05 -0700 (PDT) Message-ID: Subject: [PATCH] Remove dangling opening curly bracket. From: Servilio Afre Puentes To: notmuch Content-Type: text/plain; charset=ISO-8859-1 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, 07 Apr 2010 04:48:08 -0000 Signed-off-by: Servilio Afre Puentes --- notmuch-reply.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/notmuch-reply.c b/notmuch-reply.c index 3798d60..8eb4754 100644 --- a/notmuch-reply.c +++ b/notmuch-reply.c @@ -383,7 +383,7 @@ notmuch_reply_format_default(void *ctx, notmuch_config_t *config, notmuch_query_ if (from_addr == NULL) from_addr = guess_from_received_header (config, message); - if (from_addr == NULL) { + if (from_addr == NULL) from_addr = notmuch_config_get_user_primary_email (config); from_addr = talloc_asprintf (ctx, "%s <%s>", -- 1.7.0