blob: e3aa8281297f873fc11d1dafd6f735e59af0f23b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
$NetBSD: patch-ag,v 1.1.1.1 2000/12/12 02:03:49 wiz Exp $
--- Restart.c.orig Sat Feb 27 07:38:11 1988
+++ Restart.c Thu Dec 23 00:39:16 1999
@@ -46,6 +46,8 @@
XButtonEvent button_event;
int percentage;
int i;
+ extern char **environ;
+ char **oenv;
percentage = VOLUME_PERCENTAGE(Volume);
XBell(dpy, percentage);
@@ -55,7 +57,10 @@
* Gag, rely on operating system to close connection because we don't
* to mess ourselves up in case the exec fails.
*/
- execvp(*Argv, Argv, Environ);
+ oenv = environ;
+ environ = Environ;
+ execvp(*Argv, Argv);
+ environ = oenv;
for (i = 0; i < 4; i++) {
XBell(dpy, percentage);
percentage += 10;
|