~ubuntu-branches/ubuntu/precise/dropbear/precise

« back to all changes in this revision

Viewing changes to includes.h

  • Committer: Bazaar Package Importer
  • Author(s): Gerrit Pape
  • Date: 2007-03-02 20:48:18 UTC
  • mfrom: (1.3.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20070302204818-ozmbou2sbyj7dus5
Tags: 0.49-1
* new upstream release, fixes
  * CVE-2007-1099: dropbear dbclient insufficient warning on hostkey
    mismatch (closes: #412899).
  * dbclient uses static "Password:" prompt instead of using the server's
    prompt (closes: #394996).
* debian/control: Suggests: openssh-client, not ssh (closes: #405686);
  Standards-Version: 3.7.2.2.
* debian/README.Debian: ssh -> openssh-server, openssh-client; remove
  'Replacing OpenSSH "sshd" with Dropbear' part, this is simply done by not
  installing the openssh-server package.
* debian/README.runit: runsvstat -> sv status.

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
#include <sys/time.h>
39
39
#include <sys/un.h>
40
40
#include <sys/wait.h>
 
41
#include <sys/resource.h>
41
42
 
42
43
#include <stdio.h>
43
44
#include <errno.h>
72
73
#include <lastlog.h>
73
74
#endif
74
75
 
75
 
#include <arpa/inet.h>
76
 
 
77
76
#ifdef HAVE_NETINET_IN_H
78
77
#include <netinet/in.h>
79
78
#endif
80
79
 
 
80
#include <arpa/inet.h>
 
81
 
81
82
/* netbsd 1.6 needs this to be included before netinet/ip.h for some
82
83
 * undocumented reason */
83
84
#ifdef HAVE_NETINET_IN_SYSTM_H
135
136
#define LOG_AUTHPRIV LOG_AUTH
136
137
#endif
137
138
 
138
 
/* glibc 2.1.3 systems have sockaddr_storage.__ss_family rather than
139
 
 * sockaddr_storage.ss_family */
140
 
#if !defined(HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY) \
141
 
    && defined(HAVE_STRUCT_SOCKADDR_STORAGE___SS_FAMILY)
142
 
#define ss_family __ss_family
143
 
#endif
144
 
 
145
139
/* so we can avoid warnings about unused params (ie in signal handlers etc) */
146
140
#ifdef UNUSED 
147
141
#elif defined(__GNUC__)