summaryrefslogtreecommitdiff
path: root/debian/patches/client_connect_tmp_files.patch
diff options
context:
space:
mode:
authorAlberto Gonzalez Iniesta <agi@inittab.org>2014-10-30 11:35:29 +0100
committerAlberto Gonzalez Iniesta <agi@inittab.org>2014-10-30 11:35:29 +0100
commit99911660974eb350958e2c758ce37a1fa49a173d (patch)
treea2d7996034866370e3f53f2ea1f0c30660725c54 /debian/patches/client_connect_tmp_files.patch
parentdae8e6ae4284af8a7689a230c4eae8fb49de011b (diff)
Refresh patches, remove unneeded
Diffstat (limited to 'debian/patches/client_connect_tmp_files.patch')
-rw-r--r--debian/patches/client_connect_tmp_files.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/debian/patches/client_connect_tmp_files.patch b/debian/patches/client_connect_tmp_files.patch
deleted file mode 100644
index 6770287..0000000
--- a/debian/patches/client_connect_tmp_files.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: openvpn/src/openvpn/multi.c
-===================================================================
---- openvpn.orig/src/openvpn/multi.c 2014-10-13 18:23:19.340637895 +0200
-+++ openvpn/src/openvpn/multi.c 2014-10-13 18:23:19.336637895 +0200
-@@ -1452,10 +1452,6 @@
- option_types_found,
- mi->context.c2.es);
-
-- if (!platform_unlink (dc_file))
-- msg (D_MULTI_ERRORS, "MULTI: problem deleting temporary file: %s",
-- dc_file);
--
- /*
- * If the --client-connect script generates a config file
- * with an --ifconfig-push directive, it will override any
-@@ -1698,6 +1694,11 @@
- multi_client_connect_post (m, mi, dc_file, option_permissions_mask, &option_types_found);
- ++cc_succeeded_count;
- }
-+
-+ if (!platform_unlink (dc_file))
-+ msg (D_MULTI_ERRORS, "MULTI: problem deleting temporary file: %s",
-+ dc_file);
-+
- script_depr_failed:
- argv_reset (&argv);
- }
-@@ -1751,6 +1752,11 @@
- }
- else
- cc_succeeded = false;
-+
-+ if (!platform_unlink (dc_file))
-+ msg (D_MULTI_ERRORS, "MULTI: problem deleting temporary file: %s",
-+ dc_file);
-+
- script_failed:
- argv_reset (&argv);
- }