Fix typo that broke the build.

2007-09-07  Wouter Bolsterlee  <wbolster@svn.gnome.org>

	* modules/printbackends/cups/gtkcupsutils.c:
	(_post_send): Fix typo that broke the build.

svn path=/trunk/; revision=18755
This commit is contained in:
Wouter Bolsterlee 2007-09-07 19:25:13 +00:00 committed by Wouter Bolsterlee
parent 8bc40ad51f
commit e1cf3b525b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2007-09-07 Wouter Bolsterlee <wbolster@svn.gnome.org>
* modules/printbackends/cups/gtkcupsutils.c:
(_post_send): Fix typo that broke the build.
2007-09-07 Matthias Clasen <mclasen@redhat.com>
* configure.in: Check for the cups function httpGetAuthString().

View File

@ -629,7 +629,7 @@ _post_send (GtkCupsRequest *request)
httpClearFields (request->http);
httpSetField (request->http, HTTP_FIELD_CONTENT_LENGTH, length);
httpSetField (request->http, HTTP_FIELD_CONTENT_TYPE, "application/ipp");`
httpSetField (request->http, HTTP_FIELD_CONTENT_TYPE, "application/ipp");
#ifdef HAVE_HTTPGETAUTHSTRING
httpSetField (request->http, HTTP_FIELD_AUTHORIZATION, httpGetAuthString (request->http));
#else