From 2d64b4c0a424ff6ba86d5777daa0898a6f54412d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 31 Aug 1998 11:09:42 +0000 Subject: [PATCH] (ALLPERMS): Fix type (S_ISTXT -> S_ISVTX). --- io/sys/stat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/io/sys/stat.h b/io/sys/stat.h index f51c56aabd6..5653949b188 100644 --- a/io/sys/stat.h +++ b/io/sys/stat.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995, 1996, 1998 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -108,7 +108,7 @@ __BEGIN_DECLS #ifdef __USE_BSD /* Macros for common mode bit masks. */ #define ACCESSPERMS (S_IRWXU|S_IRWXG|S_IRWXO) /* 0777 */ -#define ALLPERMS (S_ISUID|S_ISGID|S_ISTXT|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */ +#define ALLPERMS (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)/* 07777 */ #define DEFFILEMODE (S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP|S_IROTH|S_IWOTH)/* 0666 */ #define S_BLKSIZE 512 /* Block size for `st_blocks'. */ -- 2.47.2