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

« back to all changes in this revision

Viewing changes to svr-authpam.c

  • 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:
31
31
#include "dbutil.h"
32
32
#include "auth.h"
33
33
 
 
34
#ifdef ENABLE_SVR_PAM_AUTH
 
35
 
34
36
#if defined(HAVE_SECURITY_PAM_APPL_H)
35
37
#include <security/pam_appl.h>
36
38
#elif defined (HAVE_PAM_PAM_APPL_H)
37
39
#include <pam/pam_appl.h>
38
40
#endif
39
41
 
40
 
#ifdef ENABLE_SVR_PAM_AUTH
41
 
 
42
42
struct UserDataS {
43
43
        char* user;
44
44
        char* passwd;