diff --git a/ChangeLog b/ChangeLog index 3f653fd21bebe316a499d12bf629f6c194a04918..b1a6f5e36a54513bf30037b1ff9983387453a275 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/src/nano.c b/src/nano.c index 15c1fe5eb4361083d583a069f9382203b89539cb..975b25ec207e866cb458a0a6a814d14a99923c67 100644 --- a/src/nano.c +++ b/src/nano.c @@ -3173,7 +3173,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 +3415,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 */ diff --git a/src/nano.h b/src/nano.h index 7dd25befa3976e94b7d769c6bab134f5d2fee3f3..5fb496b72a57118708616a3dda6b99777ba7c074 100644 --- a/src/nano.h +++ b/src/nano.h @@ -22,6 +22,14 @@ #ifndef NANO_H #define NANO_H 1 +#ifdef __TANDEM +/* Tandem NonStop Kernel */ +#include <floss.h> +#define NANO_ROOT_UID 65535 +#else +#define NANO_ROOT_UID 0 +#endif + #ifdef HAVE_LIMITS_H #include <limits.h> #endif diff --git a/src/rcfile.c b/src/rcfile.c index dcfdb8c7959e24fa7e3ff2ac5eb0d5fdfe9f40aa..5749c28887698f33025fca7c84cba170f5d0fac6 100644 --- a/src/rcfile.c +++ b/src/rcfile.c @@ -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) {