artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
da34147
)
delete volatile intended to silence whiny old compilers around vfork.
author
deraadt
<deraadt@openbsd.org>
Fri, 10 Aug 2018 17:03:26 +0000
(17:03 +0000)
committer
deraadt
<deraadt@openbsd.org>
Fri, 10 Aug 2018 17:03:26 +0000
(17:03 +0000)
This variable is only used in the parent context so there is no issue.
ok kettenis
lib/libutil/passwd.c
patch
|
blob
|
history
diff --git
a/lib/libutil/passwd.c
b/lib/libutil/passwd.c
index
911341c
..
cd29294
100644
(file)
--- a/
lib/libutil/passwd.c
+++ b/
lib/libutil/passwd.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: passwd.c,v 1.5
4 2015/04/24 21:13:56 miller
t Exp $ */
+/* $OpenBSD: passwd.c,v 1.5
5 2018/08/10 17:03:26 deraad
t Exp $ */
/*
* Copyright (c) 1987, 1993, 1994, 1995
@@
-212,7
+212,7
@@
pw_edit(int notsetuid, const char *filename)
{
int pstat;
char *p;
- char *
volatile
editor;
+ char *editor;
char *argp[] = {"sh", "-c", NULL, NULL};
if (!filename) {