Tue Apr 14 05:18:53 2015 UTC ()
Pull up following revision(s) (requested by christos in ticket #690):
	external/bsd/nvi/dist/ex/ex_mkexrc.c: revision 1.4
exrc expects 1 argument.


(snj)
diff -r1.3 -r1.3.6.1 src/external/bsd/nvi/dist/ex/ex_mkexrc.c

cvs diff -r1.3 -r1.3.6.1 src/external/bsd/nvi/dist/ex/ex_mkexrc.c (switch to unified diff)

--- src/external/bsd/nvi/dist/ex/ex_mkexrc.c 2014/01/26 21:43:45 1.3
+++ src/external/bsd/nvi/dist/ex/ex_mkexrc.c 2015/04/14 05:18:53 1.3.6.1
@@ -1,105 +1,105 @@ @@ -1,105 +1,105 @@
1/* $NetBSD: ex_mkexrc.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */ 1/* $NetBSD: ex_mkexrc.c,v 1.3.6.1 2015/04/14 05:18:53 snj Exp $ */
2/*- 2/*-
3 * Copyright (c) 1992, 1993, 1994 3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved. 4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996 5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved. 6 * Keith Bostic. All rights reserved.
7 * 7 *
8 * See the LICENSE file for redistribution information. 8 * See the LICENSE file for redistribution information.
9 */ 9 */
10 10
11#include "config.h" 11#include "config.h"
12 12
13#include <sys/cdefs.h> 13#include <sys/cdefs.h>
14#if 0 14#if 0
15#ifndef lint 15#ifndef lint
16static const char sccsid[] = "Id: ex_mkexrc.c,v 10.13 2001/06/25 15:19:17 skimo Exp (Berkeley) Date: 2001/06/25 15:19:17 "; 16static const char sccsid[] = "Id: ex_mkexrc.c,v 10.13 2001/06/25 15:19:17 skimo Exp (Berkeley) Date: 2001/06/25 15:19:17 ";
17#endif /* not lint */ 17#endif /* not lint */
18#else 18#else
19__RCSID("$NetBSD: ex_mkexrc.c,v 1.3 2014/01/26 21:43:45 christos Exp $"); 19__RCSID("$NetBSD: ex_mkexrc.c,v 1.3.6.1 2015/04/14 05:18:53 snj Exp $");
20#endif 20#endif
21 21
22#include <sys/types.h> 22#include <sys/types.h>
23#include <sys/queue.h> 23#include <sys/queue.h>
24#include <sys/stat.h> 24#include <sys/stat.h>
25 25
26#include <bitstring.h> 26#include <bitstring.h>
27#include <errno.h> 27#include <errno.h>
28#include <fcntl.h> 28#include <fcntl.h>
29#include <limits.h> 29#include <limits.h>
30#include <stdio.h> 30#include <stdio.h>
31#include <stdlib.h> 31#include <stdlib.h>
32#include <string.h> 32#include <string.h>
33#include <unistd.h> 33#include <unistd.h>
34 34
35#include "../common/common.h" 35#include "../common/common.h"
36#include "pathnames.h" 36#include "pathnames.h"
37 37
38/* 38/*
39 * ex_mkexrc -- :mkexrc[!] [file] 39 * ex_mkexrc -- :mkexrc[!] [file]
40 * 40 *
41 * Create (or overwrite) a .exrc file with the current info. 41 * Create (or overwrite) a .exrc file with the current info.
42 * 42 *
43 * PUBLIC: int ex_mkexrc __P((SCR *, EXCMD *)); 43 * PUBLIC: int ex_mkexrc __P((SCR *, EXCMD *));
44 */ 44 */
45int 45int
46ex_mkexrc(SCR *sp, EXCMD *cmdp) 46ex_mkexrc(SCR *sp, EXCMD *cmdp)
47{ 47{
48 struct stat sb; 48 struct stat sb;
49 FILE *fp; 49 FILE *fp;
50 int fd, sverrno; 50 int fd, sverrno;
51 const char *fname; 51 const char *fname;
52 size_t flen; 52 size_t flen;
53 53
54 switch (cmdp->argc) { 54 switch (cmdp->argc) {
55 case 0: 55 case 1:
56 fname = _PATH_EXRC; 56 fname = _PATH_EXRC;
57 INT2CHAR(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len + 1,  57 INT2CHAR(sp, cmdp->argv[0]->bp, cmdp->argv[0]->len + 1,
58 fname, flen); 58 fname, flen);
59 set_alt_name(sp, fname); 59 set_alt_name(sp, fname);
60 break; 60 break;
61 default: 61 default:
62 abort(); 62 abort();
63 } 63 }
64 64
65 if (!FL_ISSET(cmdp->iflags, E_C_FORCE) && !stat(fname, &sb)) { 65 if (!FL_ISSET(cmdp->iflags, E_C_FORCE) && !stat(fname, &sb)) {
66 msgq_str(sp, M_ERR, fname, 66 msgq_str(sp, M_ERR, fname,
67 "137|%s exists, not written; use ! to override"); 67 "137|%s exists, not written; use ! to override");
68 return (1); 68 return (1);
69 } 69 }
70 70
71 /* Create with max permissions of rw-r--r--. */ 71 /* Create with max permissions of rw-r--r--. */
72 if ((fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY, 72 if ((fd = open(fname, O_CREAT | O_TRUNC | O_WRONLY,
73 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) < 0) { 73 S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH)) < 0) {
74 msgq_str(sp, M_SYSERR, fname, "%s"); 74 msgq_str(sp, M_SYSERR, fname, "%s");
75 return (1); 75 return (1);
76 } 76 }
77 77
78 if ((fp = fdopen(fd, "w")) == NULL) { 78 if ((fp = fdopen(fd, "w")) == NULL) {
79 sverrno = errno; 79 sverrno = errno;
80 (void)close(fd); 80 (void)close(fd);
81 goto e2; 81 goto e2;
82 } 82 }
83 83
84 if (seq_save(sp, fp, "abbreviate ", SEQ_ABBREV) || ferror(fp)) 84 if (seq_save(sp, fp, "abbreviate ", SEQ_ABBREV) || ferror(fp))
85 goto e1; 85 goto e1;
86 if (seq_save(sp, fp, "map ", SEQ_COMMAND) || ferror(fp)) 86 if (seq_save(sp, fp, "map ", SEQ_COMMAND) || ferror(fp))
87 goto e1; 87 goto e1;
88 if (seq_save(sp, fp, "map! ", SEQ_INPUT) || ferror(fp)) 88 if (seq_save(sp, fp, "map! ", SEQ_INPUT) || ferror(fp))
89 goto e1; 89 goto e1;
90 if (opts_save(sp, fp) || ferror(fp)) 90 if (opts_save(sp, fp) || ferror(fp))
91 goto e1; 91 goto e1;
92 if (fclose(fp)) { 92 if (fclose(fp)) {
93 sverrno = errno; 93 sverrno = errno;
94 goto e2; 94 goto e2;
95 } 95 }
96 96
97 msgq_str(sp, M_INFO, fname, "138|New exrc file: %s"); 97 msgq_str(sp, M_INFO, fname, "138|New exrc file: %s");
98 return (0); 98 return (0);
99 99
100e1: sverrno = errno; 100e1: sverrno = errno;
101 (void)fclose(fp); 101 (void)fclose(fp);
102e2: errno = sverrno; 102e2: errno = sverrno;
103 msgq_str(sp, M_SYSERR, fname, "%s"); 103 msgq_str(sp, M_SYSERR, fname, "%s");
104 return (1); 104 return (1);
105} 105}