From patchwork Sun Aug 9 15:08:19 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "H.J. Lu" X-Patchwork-Id: 505436 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 71657140216 for ; Mon, 10 Aug 2015 01:08:31 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b=Nz2fjgQT; dkim-atps=neutral DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; q=dns; s=default; b=oFV2VU+yhTvz/Q7HSYZgqvzeRfTah qjiUGk6ddRqToQv8MYJgDnpfo0xSi5qJ3GtOUfLGOj4njeq5vjkq6KKbo7G1g5B8 Y03Wj89CavefCZ2JpoTw4NrXO41TpYlwUoh08wCNc9zUnaXX+JZ02lSZwUOkiq47 5NBMyJM0TBdFQE= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:to:subject:message-id:mime-version :content-type; s=default; bh=Io3jlYw80XR5JvbozfpjePfHB7g=; b=Nz2 fjgQTZc7vN4saxTQpd0FzSI8c23gym0EvRzrBLrtJRSro25QdM2D6gwF4k4bbZ6R 5uUL0btf1m8bq03UPTvSAhC8NEn/qt2WOppMrF/s2nN9JfUM5FZatWDAHP9G63wF 3NG/yMSmuY1rVcXH+w9tbYYMZsJ582pdHn7XIo+U= Received: (qmail 23108 invoked by alias); 9 Aug 2015 15:08:25 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 23095 invoked by uid 89); 9 Aug 2015 15:08:24 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-0.3 required=5.0 tests=AWL, BAYES_40, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pa0-f46.google.com X-Received: by 10.68.230.33 with SMTP id sv1mr36114759pbc.160.1439132901528; Sun, 09 Aug 2015 08:08:21 -0700 (PDT) Date: Sun, 9 Aug 2015 08:08:19 -0700 From: "H.J. Lu" To: GNU C Library Subject: [committed, PATCH] Add a missing break in tst-auditmod3b.c Message-ID: <20150809150819.GA20658@gmail.com> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) [BZ #18674] * sysdeps/i386/tst-auditmod3b.c (la_objsearch): Add a missing break. --- ChangeLog | 6 ++++++ NEWS | 3 ++- sysdeps/i386/tst-auditmod3b.c | 1 + 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1aef918..d4c9d79 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2015-08-09 H.J. Lu + + [BZ #18674] + * sysdeps/i386/tst-auditmod3b.c (la_objsearch): Add a missing + break. + 2015-08-09 Andreas Schwab * timezone/Makefile (tzbases, tzlinks, tzfiles): Don't define. diff --git a/NEWS b/NEWS index e0085cd..7bd785a 100644 --- a/NEWS +++ b/NEWS @@ -9,7 +9,8 @@ Version 2.23 * The following bugs are resolved with this release: - 16517, 16519, 17905, 18265, 18480, 18525, 18618, 18647, 18661, 18787. + 16517, 16519, 17905, 18265, 18480, 18525, 18618, 18647, 18661, 18674, + 18787. Version 2.22 diff --git a/sysdeps/i386/tst-auditmod3b.c b/sysdeps/i386/tst-auditmod3b.c index 5b26a13..c9c7366 100644 --- a/sysdeps/i386/tst-auditmod3b.c +++ b/sysdeps/i386/tst-auditmod3b.c @@ -82,6 +82,7 @@ la_objsearch (const char *name, uintptr_t *cookie, unsigned int flag) break; case LA_SER_DEFAULT: flagstr = "LA_SER_DEFAULT"; + break; case LA_SER_SECURE: flagstr = "LA_SER_SECURE"; break;