~ubuntu-dev/ubuntu/lucid/dovecot/lucid-201002101901

« back to all changes in this revision

Viewing changes to src/auth/auth-client-connection.c

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2008-05-26 09:51:01 UTC
  • mfrom: (1.10.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20080526095101-y0zxqc8ofd9j1aa5
Tags: 1:1.0.13-4ubuntu1
* Merge from debian unstable, remaining changes:
  - DebainMaintainerField
  - Use Snakeoil SSL certificate by default.
    + debian/control: Depend on ssl-cert
    + debian/patches/ssl-cert-snakeoil.dpatch: Change default SSL cert paths
      to snakeoil.
    + debian/dovecot-common.postinst: Relax grep for SSL_* a bit.
  - Fast TearDown:
    + debian/rules: Call dh_installinit in 'multiuser' mode.
    + debian/control: Depend on newer sysv-rc for this.
    + debian/dovecot-common.postinst: Remove stp script symlinks from rc0 and rc6 on upgrades.
      Need to be kept unil next LTS release.
  - Add autopkgtest in debian/tests/*.
  - Don't fail in postinst if dovecot-{sql,ldap} is missing. (LP: #153161)
  - Dropped upstream-mail-group-fixes.dpatch. No longer needed.
  - Dropped upstream-invalid-password-fixes.dpatch. No longer needed.
  - debian/dovecot-common.init: Check to see if there is an /etc/inetd.conf. (LP: #208411)
  - debian/patches/login-max-processes-count-warning.dpatch: Tell the user
    that they have reached the maxium number of processes count. (LP: #189616)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
#include "array.h"
9
9
#include "str.h"
10
10
#include "safe-memset.h"
 
11
#include "auth-stream.h"
11
12
#include "auth-request-handler.h"
12
13
#include "auth-client-interface.h"
13
14
#include "auth-client-connection.h"
64
65
        t_pop();
65
66
}
66
67
 
67
 
static void auth_callback(const char *reply, void *context)
 
68
static void auth_callback(struct auth_stream_reply *reply, void *context)
68
69
{
69
70
        struct auth_client_connection *conn = context;
70
71
 
74
75
                return;
75
76
        }
76
77
 
77
 
        auth_client_send(conn, reply);
 
78
        auth_client_send(conn, auth_stream_reply_export(reply));
78
79
}
79
80
 
80
81
static bool