# HG changeset patch # User Timo Sirainen # Date 1146840814 -10800 # Node ID 4f742c7f7948008aa96cd89bb970a8c7ef0db511 # Parent f7d281db12e6b97ac916ee6f824254ace610b504 Don't send extra TABs to auth worker server, they break it. diff -r f7d281db12e6 -r 4f742c7f7948 src/auth/auth-worker-client.c --- a/src/auth/auth-worker-client.c Fri May 05 17:21:22 2006 +0300 +++ b/src/auth/auth-worker-client.c Fri May 05 17:53:34 2006 +0300 @@ -89,12 +89,13 @@ str_append_c(str, '\t'); if (request->passdb_password != NULL) str_append(str, request->passdb_password); - str_append_c(str, '\t'); if (request->no_password) - str_append(str, "nopassword\t"); + str_append(str, "\tnopassword"); if (request->extra_fields != NULL) { const char *field = auth_stream_reply_export(request->extra_fields); + + str_append_c(str, '\t'); str_append(str, field); } }