File: 0055-set_default_listen.patch

package info (click to toggle)
vsftpd 3.0.3-13
  • links: PTS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 2,628 kB
  • sloc: ansic: 16,636; sh: 267; makefile: 51; python: 18
file content (21 lines) | stat: -rw-r--r-- 765 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Description: Change the default of tunable_listen.
 Change the default of tunable_listen to the same as in
 man page vsftpd.conf.
Author: Jörg Frings-Fürst <debian@jff-webhosting.net>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=783077
Last-Update: 2015-04-21
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
Index: trunk/tunables.c
===================================================================
--- trunk.orig/tunables.c
+++ trunk/tunables.c
@@ -182,7 +182,7 @@ tunables_load_defaults()
   tunable_use_localtime = 0;
   tunable_check_shell = 1;
   tunable_hide_ids = 0;
-  tunable_listen = 1;
+  tunable_listen = 0;
   tunable_port_promiscuous = 0;
   tunable_passwd_chroot_enable = 0;
   tunable_no_anon_password = 0;