Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 118797 | Differences between
and this patch

Collapse All | Expand All

(-)openvpn-admin-1.9.2.orig/src/Configuration.cs (-1 / +2 lines)
Lines 29-34 Link Here
29
using System.Collections.Specialized;
29
using System.Collections.Specialized;
30
using System.Text.RegularExpressions;
30
using System.Text.RegularExpressions;
31
using Mono.Unix;
31
using Mono.Unix;
32
using Mono.Unix.Native;
32
33
33
namespace OpenVPN.Admin
34
namespace OpenVPN.Admin
34
{
35
{
Lines 460-466 Link Here
460
			
461
			
461
			// Only for Mono after 1.9.1 releases.
462
			// Only for Mono after 1.9.1 releases.
462
			//Mono.Unix.Native.Syscall.kill(pid, Mono.Unix.Native.Signum.SIGKILL);
463
			//Mono.Unix.Native.Syscall.kill(pid, Mono.Unix.Native.Signum.SIGKILL);
463
			Mono.Unix.Syscall.kill(pid, Mono.Unix.Signum.SIGKILL);
464
			Mono.Unix.Native.Syscall.kill(pid, Mono.Unix.Native.Signum.SIGKILL);
464
465
465
			File.Delete(pidfile);
466
			File.Delete(pidfile);
466
			File.Delete(stafile);
467
			File.Delete(stafile);

Return to bug 118797