From patchwork Thu Mar 12 12:41:12 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Wakely X-Patchwork-Id: 38532 Return-Path: X-Original-To: libc-alpha@sourceware.org Delivered-To: libc-alpha@sourceware.org Received: from us-smtp-delivery-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by sourceware.org (Postfix) with ESMTP id 87EBF3937428 for ; Thu, 12 Mar 2020 12:41:17 +0000 (GMT) Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-35-OdvAb4joNdeE_SV-kCEZ-A-1; Thu, 12 Mar 2020 08:41:15 -0400 X-MC-Unique: OdvAb4joNdeE_SV-kCEZ-A-1 Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 04B53107ACC9 for ; Thu, 12 Mar 2020 12:41:14 +0000 (UTC) Received: from localhost (unknown [10.33.36.94]) by smtp.corp.redhat.com (Postfix) with ESMTP id A53F35C1D4 for ; Thu, 12 Mar 2020 12:41:13 +0000 (UTC) Date: Thu, 12 Mar 2020 12:41:12 +0000 From: Jonathan Wakely To: libc-alpha@sourceware.org Subject: [PATCH] parse_tunables: Fix typo in comment Message-ID: <20200312124112.GD9441@redhat.com> MIME-Version: 1.0 X-Clacks-Overhead: GNU Terry Pratchett X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline X-Spam-Status: No, score=-27.1 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Mar 2020 12:41:18 -0000 Untested patch to fix a typo. commit 76948ad721b9929dbddfc997baf29d5c48e7e828 Author: Jonathan Wakely Date: Thu Mar 12 12:38:59 2020 +0000 parse_tunables: Fix typo in comment diff --git a/elf/dl-tunables.c b/elf/dl-tunables.c index b0980c5ad9..edfe00ae35 100644 --- a/elf/dl-tunables.c +++ b/elf/dl-tunables.c @@ -219,7 +219,7 @@ parse_tunables (char *tunestr, char *valstring) { /* If we are in a secure context (AT_SECURE) then ignore the tunable unless it is explicitly marked as secure. Tunable values take - precendence over their envvar aliases. */ + precedence over their envvar aliases. */ if (__libc_enable_secure) { if (cur->security_level == TUNABLE_SECLEVEL_SXID_ERASE)