From patchwork Tue May 13 15:17:42 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andreas Schwab X-Patchwork-Id: 885 Return-Path: X-Original-To: siddhesh@wilcox.dreamhost.com Delivered-To: siddhesh@wilcox.dreamhost.com Received: from homiemail-mx22.g.dreamhost.com (mx2.sub5.homie.mail.dreamhost.com [208.113.200.128]) by wilcox.dreamhost.com (Postfix) with ESMTP id 29B9F360098 for ; Tue, 13 May 2014 08:17:52 -0700 (PDT) Received: by homiemail-mx22.g.dreamhost.com (Postfix, from userid 14307373) id B0047573EE63; Tue, 13 May 2014 08:17:51 -0700 (PDT) X-Original-To: glibc@patchwork.siddhesh.in Delivered-To: x14307373@homiemail-mx22.g.dreamhost.com 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 homiemail-mx22.g.dreamhost.com (Postfix) with ESMTPS id 3A51E573EE4D for ; Tue, 13 May 2014 08:17:51 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id:mime-version :content-type; q=dns; s=default; b=xv8BxRVM4MuxP+yfVAhKvhWJ8dtnx Dimm3oHmJ2iA3U9nPynmBqN7WqnB7P7kECzs3hU1QYmHREX3tdMIDPZdUAzKVJwb nyoVuQ5jTfRjzDDHGpUvK7ndX4WvS2EPM1LdeawXNFtPmOh4TrLGIZViFhIt7/c4 klPjvBjzXoKToE= 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:from:to:subject:date:message-id:mime-version :content-type; s=default; bh=jPrnTzm2UcURX3BEOgNHLXsDpdw=; b=ojH Kayf4g2bnSUfYvUpg+4G2RRSSLRdCq8lWKWVmanAtcO4vgHU/Yvc09InAFJaCU4S qHzuEBIrbIDBIHHRdSO90a/kRHDdfLtJsNpq5Zl6otJPD+8B1tqynM3L0TyTfbhB zVBIZ+ITjAfnPDShDPv8YRFsi/R/3pSxNO1sYt94= Received: (qmail 3293 invoked by alias); 13 May 2014 15:17:48 -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 3275 invoked by uid 89); 13 May 2014 15:17:47 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.2 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx2.suse.de From: Andreas Schwab To: libc-alpha@sourceware.org Subject: [PATCH] Fix typo in assertion X-Yow: RELATIVES!! Date: Tue, 13 May 2014 17:17:42 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 X-DH-Original-To: glibc@patchwork.siddhesh.in Committed. Andreas. * sysdeps/unix/grantpt.c (grantpt): Fix typo in assertion. diff --git a/sysdeps/unix/grantpt.c b/sysdeps/unix/grantpt.c index c4f067f..410dc50 100644 --- a/sysdeps/unix/grantpt.c +++ b/sysdeps/unix/grantpt.c @@ -229,7 +229,7 @@ grantpt (int fd) break; default: - assert(! "getpt: internal error: invalid exit code from pt_chown"); + assert(! "grantpt: internal error: invalid exit code from pt_chown"); } } #endif