]> andersk Git - moira.git/commitdiff
We allow for .root instances to be counted as system users;
authorprobe <probe>
Fri, 22 Oct 1993 20:16:26 +0000 (20:16 +0000)
committerprobe <probe>
Fri, 22 Oct 1993 20:16:26 +0000 (20:16 +0000)
they have id's in the 65536-97536 range.

afssync/pt_util.c

index c9033c2a5af3ce33e19877bb416f7a8088c186c8..bf75b5b493a9f37e93cbc56a40a3cd1f095075ca 100644 (file)
@@ -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;
This page took 0.041123 seconds and 5 git commands to generate.