diff options
author | ache <ache@FreeBSD.org> | 1997-09-24 02:16:50 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-24 02:16:50 +0000 |
commit | 3f8a1087277f938d1482d273a24d2444bc103e07 (patch) | |
tree | 3526c769dccc79cb97adb5d9bf31728f85345a3d | |
parent | 0d91fed910f0a476a99075a11766437d070ae244 (diff) | |
download | FreeBSD-src-3f8a1087277f938d1482d273a24d2444bc103e07.zip FreeBSD-src-3f8a1087277f938d1482d273a24d2444bc103e07.tar.gz |
Install scorefile as group games writeable
Remove revoke from game, score can't work with revoke
-rw-r--r-- | games/robots/Makefile | 2 | ||||
-rw-r--r-- | games/robots/main.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/games/robots/Makefile b/games/robots/Makefile index bded134..18503e0 100644 --- a/games/robots/Makefile +++ b/games/robots/Makefile @@ -10,7 +10,7 @@ LDADD= -lcurses -ltermcap -lcompat HIDEGAME=hidegame beforeinstall: - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 600 /dev/null \ + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 664 /dev/null \ ${DESTDIR}/var/games/robots_roll .include <bsd.prog.mk> diff --git a/games/robots/main.c b/games/robots/main.c index 00c4187..ee0adbc 100644 --- a/games/robots/main.c +++ b/games/robots/main.c @@ -56,10 +56,6 @@ char **av; extern int Max_per_uid; void quit(); - /* revoke */ - setegid(getgid()); - setgid(getgid()); - show_only = FALSE; if (ac > 1) { bad_arg = FALSE; |