Don't give special privileges to uid 13107.
[bsdgames-darwin.git] / trek / win.c
index 31c3cfe9547933ef1ec735eccfe258b9745555ce..70d1b9a296b7f0a8644f0d5cb8220268225e724e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: win.c,v 1.8 2009/05/24 19:18:44 dholland Exp $ */
+/*     $NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $        */
 
 /*
  * Copyright (c) 1980, 1993
@@ -34,7 +34,7 @@
 #if 0
 static char sccsid[] = "@(#)win.c      8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: win.c,v 1.8 2009/05/24 19:18:44 dholland Exp $");
+__RCSID("$NetBSD: win.c,v 1.11 2009/05/24 23:00:46 dholland Exp $");
 #endif
 #endif /* not lint */
 
@@ -63,7 +63,7 @@ void
 win(void)
 {
        long            s;
-       const struct cvntab     *p = NULL;
+       const struct cvntab *p;
 
        sleep(1);
        printf("\nCongratulations, you have saved the Federation\n");
@@ -73,14 +73,13 @@ win(void)
        s = score();
 
        /* decide if she gets a promotion */
-       if (Game.helps == 0 && Game.killb == 0 && Game.killinhab == 0 && 5 * Game.kills + Game.deaths < 100 &&
-                       s >= 1000 && Ship.ship == ENTERPRISE)
-       {
+       if (Game.helps == 0 && Game.killb == 0 && Game.killinhab == 0 &&
+           5 * Game.kills + Game.deaths < 100 &&
+           s >= 1000 && Ship.ship == ENTERPRISE) {
                printf("In fact, you are promoted one step in rank,\n");
-               if (Game.skill >= 6)
+               if (Game.skill >= 6) {
                        printf("to the exalted rank of Commodore Emeritus\n");
-               else
-               {
+               } else {
                        p = &Skitab[Game.skill - 1];
                        printf("from %s%s ", p->abrev, p->full);
                        p++;