29 lines
1.1 KiB
Plaintext
29 lines
1.1 KiB
Plaintext
$NetBSD: patch-am,v 1.2 2011/09/22 15:16:26 ryoon Exp $
|
|
|
|
--- src/cvs.h.orig 2006-08-25 15:48:55.000000000 +0000
|
|
+++ src/cvs.h
|
|
@@ -382,6 +382,7 @@ extern int really_quiet, quiet;
|
|
extern int use_editor;
|
|
extern int cvswrite;
|
|
extern mode_t cvsumask;
|
|
+extern char *RCS_citag;
|
|
|
|
|
|
|
|
@@ -400,6 +401,7 @@ extern int safe_location PROTO ((char *)
|
|
|
|
extern int trace; /* Show all commands */
|
|
extern int noexec; /* Don't modify disk anywhere */
|
|
+extern int nolock; /* Don't create locks */
|
|
extern int logoff; /* Don't write history entry */
|
|
|
|
extern int top_level_admin;
|
|
@@ -694,6 +696,7 @@ void sleep_past PROTO ((time_t desttime)
|
|
#define RUN_STDOUT_APPEND 0x0004 /* append to stdout, don't truncate */
|
|
#define RUN_STDERR_APPEND 0x0008 /* append to stderr, don't truncate */
|
|
#define RUN_SIGIGNORE 0x0010 /* ignore interrupts for command */
|
|
+#define RUN_UNSETXID 0x0020 /* undo setxid in child */
|
|
#define RUN_TTY (char *)0 /* for the benefit of lint */
|
|
|
|
void run_add_arg_p PROTO ((int *, size_t *, char ***, const char *s));
|