remove NFS spool support; it stands in the way of pledge(2)
authorderaadt <deraadt@openbsd.org>
Fri, 9 Oct 2015 17:07:21 +0000 (17:07 +0000)
committerderaadt <deraadt@openbsd.org>
Fri, 9 Oct 2015 17:07:21 +0000 (17:07 +0000)
libexec/comsat/comsat.c

index d83b18b..af26c73 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: comsat.c,v 1.40 2015/07/06 15:42:20 millert Exp $     */
+/*     $OpenBSD: comsat.c,v 1.41 2015/10/09 17:07:21 deraadt Exp $     */
 
 /*
  * Copyright (c) 1980, 1993
@@ -275,15 +275,8 @@ jkfprintf(FILE *tp, char name[], off_t offset)
        char visout[5], *s2;
        FILE *fi;
        int linecnt, charcnt, inheader;
-       struct passwd *p;
        char line[BUFSIZ];
 
-       /* Set effective uid to user in case mail drop is on nfs */
-       if ((p = getpwnam(name)) != NULL) {
-               (void) seteuid(p->pw_uid);
-               (void) setuid(p->pw_uid);
-       }
-
        if ((fi = fopen(name, "r")) == NULL)
                return;