From c65cba463ce608850f3f2c72b1a5796b47c89e46 Mon Sep 17 00:00:00 2001 From: probe Date: Fri, 22 Oct 1993 20:16:26 +0000 Subject: [PATCH] We allow for .root instances to be counted as system users; they have id's in the 65536-97536 range. --- afssync/pt_util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/afssync/pt_util.c b/afssync/pt_util.c index c9033c2a..bf75b5b4 100644 --- a/afssync/pt_util.c +++ b/afssync/pt_util.c @@ -28,8 +28,8 @@ #include "pterror.h" #define IDHash(x) (abs(x) % HASHSIZE) -#define print_id(x) ( ((flags&DO_SYS)==0 && (abs(x)>32767)) || \ - ((flags&DO_OTR)==0 && (abs(x)<32768))) +#define print_id(x) ( ((flags&DO_SYS)==0 && (x<-32767 || x>97536)) || \ + ((flags&DO_OTR)==0 && (x>-32768 && x<97537))) extern char *optarg; extern int optind; -- 2.45.2