Corrected typo in networking.c
Message ID | CAM7c+bn=O=S5-dj2U1t2Wiopj=CBHdmw8M15knYztxCQmR7scg@mail.gmail.com |
---|---|
State | Accepted |
Headers |
Return-Path: <development-bounces@lists.ipfire.org> Received: from mail01.ipfire.org (mail01.tremer.info [172.28.1.200]) by septima.ipfire.org (Postfix) with ESMTP id 8689060DEA for <patchwork@ipfire.org>; Sun, 20 Sep 2015 11:24:38 +0200 (CEST) Received: from hedwig.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 3ECF0D15; Sun, 20 Sep 2015 11:24:37 +0200 (CEST) Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2a00:1450:400c:c05::229; helo=mail-wi0-x229.google.com; envelope-from=mibs510@gmail.com; receiver=development@lists.ipfire.org Received: from mail-wi0-x229.google.com (mail-wi0-x229.google.com [IPv6:2a00:1450:400c:c05::229]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPS id 1135D2DB for <development@lists.ipfire.org>; Sun, 20 Sep 2015 11:24:33 +0200 (CEST) Received: by wicge5 with SMTP id ge5so79932081wic.0 for <development@lists.ipfire.org>; Sun, 20 Sep 2015 02:24:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=dga82bTIt0oASA2vT65Aj2iUjjWfhDqmXKwdl2olOfY=; b=GDWJcQwu9BM7QBrpLKrhWlkEua/3nROFg5HkntbzNjsuFUrWIu3DDzqph0UN9w8NHZ lP75Oy1qo4BPChdrgp+veE25A1laMbZbh6NTNFrmizQ8UWQy3mUQ9tMaHTvcqVh+ifm2 Qayu+HChtsFcLcB2klwKwOqW7pHxTtsIe9/WeRaQcRSXEEZQmQ1QCUfYNcjI9B9mSONW zlVtddxjR6+hrQ9ciIWvNUKkYdra41NlpiWEJp27rssb1g/0O88DwKOTkV6cJ9Mzc4g2 bnODVXpxpAnc4ptZlN5phT0OvmU3q/klTg00dzxKbpwVM3AUVLhRL3cVA4/8po6TkCqM U8QQ== MIME-Version: 1.0 X-Received: by 10.180.8.3 with SMTP id n3mr7225840wia.41.1442741073019; Sun, 20 Sep 2015 02:24:33 -0700 (PDT) Received: by 10.194.15.73 with HTTP; Sun, 20 Sep 2015 02:24:32 -0700 (PDT) Date: Sun, 20 Sep 2015 02:24:32 -0700 Message-ID: <CAM7c+bn=O=S5-dj2U1t2Wiopj=CBHdmw8M15knYztxCQmR7scg@mail.gmail.com> Subject: [PATCH] Corrected typo in networking.c From: Osmar Gonzalez <mibs510@gmail.com> To: development@lists.ipfire.org Content-Type: multipart/alternative; boundary=f46d0442818429095305202a55b9 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: IPFire development talk <development.lists.ipfire.org> List-Unsubscribe: <http://lists.ipfire.org/mailman/options/development>, <mailto:development-request@lists.ipfire.org?subject=unsubscribe> List-Archive: <http://lists.ipfire.org/pipermail/development/> List-Post: <mailto:development@lists.ipfire.org> List-Help: <mailto:development-request@lists.ipfire.org?subject=help> List-Subscribe: <http://lists.ipfire.org/mailman/listinfo/development>, <mailto:development-request@lists.ipfire.org?subject=subscribe> Errors-To: development-bounces@lists.ipfire.org Sender: "Development" <development-bounces@lists.ipfire.org> |
Message
Osmar Gonzalez
Sept. 20, 2015, 7:24 p.m. UTC
Corrected "Misssing" to "Missing".
Signed-off-by: Osmar Gonzalez <mibs510@gmail.com>
---
Comments
Thank you for sending in this patch. However I had some whitespace issues when importing this patch and this email had a HTML part which just confuses patchwork. Could you please use git send-email for the next time if that is convenient for you? This one is merged now. Best, -Michael On Sun, 2015-09-20 at 02:24 -0700, Osmar Gonzalez wrote: > Corrected "Misssing" to "Missing". > > Signed-off-by: Osmar Gonzalez <mibs510@gmail.com> > --- > diff --git a/src/setup/networking.c b/src/setup/networking.c > index 0791764..1067b95 100644 > --- a/src/setup/networking.c > +++ b/src/setup/networking.c > @@ -213,7 +213,7 @@ int oktoleave(void) > strcpy(temp, ""); findkey(kv, "DNS1", temp); > if (!(strlen(temp))) > { > - errorbox(_("Misssing DNS.")); > + errorbox(_("Missing DNS.")); > freekeyvalues(kv); > return 0; > }