Tom Bates' nsr-tandem-nsk port, plus a few tweaks of mine

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1677 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2004-03-02 21:31:31 +00:00
parent ba7b1681a2
commit b34c683f3f
4 changed files with 17 additions and 3 deletions

View File

@ -30,6 +30,8 @@ CVS code -
Add function init_backup_dir() to handle relative paths
correctly, use get_full_path() to get the canonical pathname,
and use tail() to get the filename if get_full_path() fails.
- Port to the Tandem NonStop Kernel (nsr-tandem-nsk). (Tom
Bates; minor tweaks by DLR)
- files.c:
add_open_files()
- Make the saving of marked status in open_files->file_flags

View File

@ -19,6 +19,11 @@
* *
**************************************************************************/
#ifdef __TANDEM
/* Tandem NonStop Kernel */
#include <floss.h>
#endif
#include "config.h"
#include <stdio.h>
@ -3173,7 +3178,7 @@ int main(int argc, char *argv[])
#if !defined(ENABLE_NANORC) && defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
/* if we don't have rcfile support, we're root, and
--disable-wrapping-as-root is used, turn wrapping off */
if (geteuid() == 0)
if (geteuid() == NANO_ROOT_UID)
SET(NO_WRAP);
#endif
@ -3415,7 +3420,7 @@ int main(int argc, char *argv[])
flags |= flags_cpy;
}
#if defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
else if (geteuid() == 0)
else if (geteuid() == NANO_ROOT_UID)
SET(NO_WRAP);
#endif
#endif /* ENABLE_NANORC */

View File

@ -22,6 +22,13 @@
#ifndef NANO_H
#define NANO_H 1
#ifdef __TANDEM
/* Tandem NonStop Kernel */
#define NANO_ROOT_UID 65535
#else
#define NANO_ROOT_UID 0
#endif
#ifdef HAVE_LIMITS_H
#include <limits.h>
#endif

View File

@ -678,7 +678,7 @@ void do_rcfile(void)
#if defined(DISABLE_ROOTWRAP) && !defined(DISABLE_WRAPPING)
/* If we've already read SYSCONFDIR/nanorc (if it's there), we're
root, and --disable-wrapping-as-root is used, turn wrapping off */
if (euid == 0)
if (euid == NANO_ROOT_UID)
SET(NO_WRAP);
#endif
if ((rcstream = fopen(nanorc, "r")) == NULL) {