From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/10421 Path: news.gmane.org!.POSTED!not-for-mail From: Daniel Sabogal Newsgroups: gmane.linux.lib.musl.general Subject: [PATCH] fix typo in utmpx.h Date: Sun, 4 Sep 2016 10:42:48 -0400 Message-ID: <20160904144248.9208-2-dsabogalcc@gmail.com> References: <20160904144248.9208-1-dsabogalcc@gmail.com> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org X-Trace: blaine.gmane.org 1473000206 13829 195.159.176.226 (4 Sep 2016 14:43:26 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Sun, 4 Sep 2016 14:43:26 +0000 (UTC) To: musl@lists.openwall.com Original-X-From: musl-return-10434-gllmg-musl=m.gmane.org@lists.openwall.com Sun Sep 04 16:43:23 2016 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.84_2) (envelope-from ) id 1bgYdl-00031M-70 for gllmg-musl@m.gmane.org; Sun, 04 Sep 2016 16:43:21 +0200 Original-Received: (qmail 17818 invoked by uid 550); 4 Sep 2016 14:43:17 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 17773 invoked from network); 4 Sep 2016 14:43:14 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:in-reply-to:references; bh=yOmE0NiaggMiK5roGxgeToVCOFLPtuxCQE9vgHOL5JQ=; b=JUeIpSw6s3a5T9Nk8gHFxq4BoawHn0DcSSPqVZTmhQIbLmt1MYo72+VezOuP33me3R GuouRUan7sR1Ik+jfciGVJ9xTTtcexxfvZbu0UV/zzMOvSTkrgoo0o8DLVjaWZ53EmzY /uxtrmhRkg1Q1je4mCXuzpaYevx6YM0FRti1XAKwg2JRSQ+t6Y+GnzEZ1KI7qwH9Qbhx HALrUQARuKIhD5iKGUv6+9AWznbW86yt81WGRbGG+0hfrE4YEeXnuLFemzARIQE/kC9H Nh8JuRPRx6N8d6t2lNbBLDxJuRpe9nkZeej7AdR7ky3KyW63RYoM2S6TbR0IHMrovcRw 4q0Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id:in-reply-to :references; bh=yOmE0NiaggMiK5roGxgeToVCOFLPtuxCQE9vgHOL5JQ=; b=Hb9Pb1u9cBbjLV7+MR57CXZhwbQKiTWaSsmkQTtuBLhavZFi+gSWuUddo2jycLn5pH lrNnbjfClB2WZ16HjzcFPwxMIE6GVthc4tEAH/kOvfXItBm+igracrix+0xGf+hnKasE xcC2flKoWLCK5r1qKHhyTNpyYJhFGuX6lA9NtU5kTdYN9DD7MVnXdGNfYXj7vsS+SYQj ncV/bNiaNvEAQkq7BIhi0b2k9lAqHYubtkTMYxaoeYPxpRF9yMQ5uAKmmV9o3po/osNp dnv/C0Wi1LJBKjY+CueAZX+JW5Ht1NF5sAminHbeygyx5ncf+Zb9ywxHaca1XEbwCU3G 7FgA== X-Gm-Message-State: AE9vXwPlJWBp3ZElgS81mgBs0hIgIfUAcDNDL6EVDQ0M0K+eoBK2TT5gNYEIIF5sWwFdDQ== X-Received: by 10.157.12.157 with SMTP id b29mr692510otb.12.1473000183228; Sun, 04 Sep 2016 07:43:03 -0700 (PDT) X-Mailer: git-send-email 2.10.0 In-Reply-To: <20160904144248.9208-1-dsabogalcc@gmail.com> Xref: news.gmane.org gmane.linux.lib.musl.general:10421 Archived-At: --- include/utmpx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/utmpx.h b/include/utmpx.h index 9e5cc95..0429014 100644 --- a/include/utmpx.h +++ b/include/utmpx.h @@ -38,7 +38,7 @@ struct utmpx *getutxline(const struct utmpx *); struct utmpx *pututxline(const struct utmpx *); void setutxent(void); -#if defined(_BSD_SOURCE) | defined(_GNU_SOURCE) +#if defined(_BSD_SOURCE) || defined(_GNU_SOURCE) #define e_exit __e_exit #define e_termination __e_termination void updwtmpx(const char *, const struct utmpx *); -- 2.10.0