summaryrefslogtreecommitdiffstats
path: root/ppt
diff options
context:
space:
mode:
Diffstat (limited to 'ppt')
-rw-r--r--ppt/ppt.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/ppt/ppt.c b/ppt/ppt.c
index cef23a7f..befb1953 100644
--- a/ppt/ppt.c
+++ b/ppt/ppt.c
@@ -1,4 +1,4 @@
-/* $NetBSD: ppt.c,v 1.5 1997/10/10 16:48:39 lukem Exp $ */
+/* $NetBSD: ppt.c,v 1.6 1999/09/12 09:02:22 jsm Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -43,11 +43,12 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\n\
#if 0
static char sccsid[] = "@(#)ppt.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: ppt.c,v 1.5 1997/10/10 16:48:39 lukem Exp $");
+__RCSID("$NetBSD: ppt.c,v 1.6 1999/09/12 09:02:22 jsm Exp $");
#endif
#endif /* not lint */
#include <stdio.h>
+#include <unistd.h>
int main __P((int, char *[]));
static void putppt __P((int));
@@ -60,6 +61,9 @@ main(argc, argv)
int c;
char *p;
+ /* Revoke setgid privileges */
+ setregid(getgid(), getgid());
+
(void) puts("___________");
if (argc > 1)
while ((p = *++argv) != NULL)