]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - backgammon/common_source/save.c
Don't skip the first arg.
[bsdgames-darwin.git] / backgammon / common_source / save.c
index 8faec03d166aaec584dfe955b553481a8fbbc24a..2f4a810140b97836b73caa13ac86af964e08de25 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: save.c,v 1.6 1998/08/29 22:53:04 hubertf Exp $ */
+/*     $NetBSD: save.c,v 1.9 1999/07/28 02:07:39 hubertf Exp $ */
 
 /*
  * Copyright (c) 1980, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)save.c     8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: save.c,v 1.6 1998/08/29 22:53:04 hubertf Exp $");
+__RCSID("$NetBSD: save.c,v 1.9 1999/07/28 02:07:39 hubertf Exp $");
 #endif
 #endif /* not lint */
 
@@ -46,16 +46,16 @@ __RCSID("$NetBSD: save.c,v 1.6 1998/08/29 22:53:04 hubertf Exp $");
 
 #include "back.h"
 
-static char confirm[] = "Are you sure you want to leave now?";
-static char prompt[] = "Enter a file name:  ";
-static char exist1[] = "The file '";
-static char exist2[] =
+static const char confirm[] = "Are you sure you want to leave now?";
+static const char prompt[] = "Enter a file name:  ";
+static const char exist1[] = "The file '";
+static const char exist2[] =
 "' already exists.\nAre you sure you want to use this file?";
-static char cantuse[] = "\nCan't use ";
-static char saved[] = "This game has been saved on the file '";
-static char type[] = "'.\nType \"backgammon ";
-static char rec[] = "\" to recover your game.\n\n";
-static char cantrec[] = "Can't recover file:  ";
+static const char cantuse[] = "\nCan't use ";
+static const char saved[] = "This game has been saved on the file '";
+static const char type[] = "'.\nType \"backgammon ";
+static const char rec[] = "\" to recover your game.\n\n";
+static const char cantrec[] = "Can't recover file:  ";
 
 void
 save(n)
@@ -95,7 +95,7 @@ save(n)
                }
                *fs = '\0';
                if ((fdesc = open(fname, O_RDWR)) == -1 && errno == ENOENT) {
-                       if ((fdesc = creat(fname, 0700)) != -1)
+                       if ((fdesc = creat(fname, 0600)) != -1)
                                break;
                }
                if (fdesc != -1) {
@@ -111,7 +111,7 @@ save(n)
                        close(fdesc);
                        if (yorn(0)) {
                                unlink(fname);
-                               fdesc = creat(fname, 0700);
+                               fdesc = creat(fname, 0600);
                                break;
                        } else {
                                cflag = 1;
@@ -150,7 +150,7 @@ save(n)
 
 void
 recover(s)
-       char   *s;
+       const char   *s;
 {
        int     fdesc;
 
@@ -173,9 +173,9 @@ recover(s)
 
 void
 norec(s)
-       char   *s;
+       const char   *s;
 {
-       char   *c;
+       const char   *c;
 
        tflag = 0;
        writel(cantrec);