From owner-freebsd-audit Mon Jan 21 16: 5:26 2002 Delivered-To: freebsd-audit@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 7B6AC37B400 for ; Mon, 21 Jan 2002 16:05:23 -0800 (PST) Received: from hades.hell.gr (patr530-b165.otenet.gr [212.205.244.173]) by mailsrv.otenet.gr (8.11.5/8.11.5) with ESMTP id g0M05K417626 for ; Tue, 22 Jan 2002 02:05:20 +0200 (EET) Received: by hades.hell.gr (Postfix, from userid 1001) id 9BECD3E; Tue, 22 Jan 2002 01:54:42 +0200 (EET) Date: Tue, 22 Jan 2002 01:54:41 +0200 From: Giorgos Keramidas To: audit@FreeBSD.org Subject: minor sys/sys/errno.h style change? Message-ID: <20020121235440.GA644@hades.hell.gr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.25i Sender: owner-freebsd-audit@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG What do you all think of this small change to sys/sys/errno.h ? ENOTSUP is the only error code that is not indented with a tab after the #define statement. All others use a tab. You can quickly check this at your copy of errno.h, with `set ts=15' while editing in vi(1). - Giorgos Index: errno.h =================================================================== RCS file: /home/ncvs/src/sys/sys/errno.h,v retrieving revision 1.17 diff -2 -u -r1.17 errno.h --- errno.h 27 Aug 2001 17:05:29 -0000 1.17 +++ errno.h 21 Jan 2002 23:47:48 -0000 @@ -109,5 +109,5 @@ #define ESOCKTNOSUPPORT 44 /* Socket type not supported */ #define EOPNOTSUPP 45 /* Operation not supported */ -#define ENOTSUP EOPNOTSUPP /* Operation not supported */ +#define ENOTSUP EOPNOTSUPP /* Operation not supported */ #define EPFNOSUPPORT 46 /* Protocol family not supported */ #define EAFNOSUPPORT 47 /* Address family not supported by protocol family */ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-audit" in the body of the message