~ubuntu-branches/ubuntu/utopic/vsftpd/utopic-proposed

« back to all changes in this revision

Viewing changes to standalone.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2009-05-03 17:49:00 UTC
  • mto: (2.4.1 sid) (1.5.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 15.
  • Revision ID: james.westby@ubuntu.com-20090503174900-0osuifgr8jknvu5e
Tags: upstream-2.1.1~pre1
ImportĀ upstreamĀ versionĀ 2.1.1~pre1

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
    child_info.num_this_ip = 0;
152
152
    p_raw_addr = vsf_sysutil_sockaddr_get_raw_addr(p_accept_addr);
153
153
    child_info.num_this_ip = handle_ip_count(p_raw_addr);
154
 
    if (tunable_isolate)
155
 
    {
156
 
      if (tunable_http_enable && tunable_isolate_network)
157
 
      {
158
 
        new_child = vsf_sysutil_fork_isolate_all_failok();
159
 
      }
160
 
      else
161
 
      {
162
 
        new_child = vsf_sysutil_fork_isolate_failok();
163
 
      }
164
 
    }
165
 
    else
166
 
    {
167
 
      new_child = vsf_sysutil_fork_failok();
168
 
    }
 
154
    new_child = vsf_sysutil_fork_failok();
169
155
    if (new_child != 0)
170
156
    {
171
157
      /* Parent context */