lftp/lftp.patch

Thu, 04 Oct 2012 20:30:05 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 04 Oct 2012 20:30:05 +0200
changeset 715
c10fb90893b9
parent 467
e2558d4b246c
permissions
-rw-r--r--

Correct out of date build configuration, porting to Solaris 11 network
link infrastructure and new libpcap logic. This additionally allows for
device drivers in subdirectories of /dev. Correct packaged nmap
personalities and signatures to work out of the box. Finally, hack
arpd logic to properly close sockets and quit on TERM by repeating
signaling in the run command script. Sadly, all this fails to correct
the run time behaviour of honeyd which fails to bind to the IP layer.

     1 Index: src/lftp_tinfo.cc
     2 --- src/lftp_tinfo.cc.orig	2008-11-27 06:56:39 +0100
     3 +++ src/lftp_tinfo.cc	2009-09-13 21:09:13 +0200
     4 @@ -23,20 +23,20 @@
     5  #include <config.h>
     7  extern "C" {
     8 -#if defined(HAVE_CURSES_H)
     9 -# include <curses.h>
    10 -# if defined(HAVE_TERM_H)
    11 -#  include <term.h>
    12 -# elif defined(HAVE_NCURSES_TERM_H)
    13 -#  include <ncurses/term.h>
    14 -# endif
    15 -#elif defined(HAVE_NCURSES_CURSES_H)
    16 +#if defined(HAVE_NCURSES_CURSES_H)
    17  # include <ncurses/curses.h>
    18  # if defined(HAVE_NCURSES_TERM_H)
    19  #  include <ncurses/term.h>
    20  # elif defined(HAVE_TERM_H)
    21  #  include <term.h>
    22  # endif
    23 +#elif defined(HAVE_CURSES_H)
    24 +# include <curses.h>
    25 +# if defined(HAVE_TERM_H)
    26 +#  include <term.h>
    27 +# elif defined(HAVE_NCURSES_TERM_H)
    28 +#  include <ncurses/term.h>
    29 +# endif
    30  #elif defined(HAVE_TERMCAP_H)
    31  # include <termcap.h>
    32  #endif

mercurial