~ubuntu-branches/ubuntu/edgy/curl/edgy

« back to all changes in this revision

Viewing changes to lib/http_negotiate.c

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2006-06-29 15:04:24 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20060629150424-pn00qumt9sml8p4m
Tags: 7.15.4-1ubuntu1
Synchronize to Debian. Only change left: Removal of stunnel and
libdb4.2-dev build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 *                            | (__| |_| |  _ <| |___
6
6
 *                             \___|\___/|_| \_\_____|
7
7
 *
8
 
 * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
 
8
 * Copyright (C) 1998 - 2006, Daniel Stenberg, <daniel@haxx.se>, et al.
9
9
 *
10
10
 * This software is licensed as described in the file COPYING, which
11
11
 * you should have received as part of this distribution. The terms
18
18
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19
19
 * KIND, either express or implied.
20
20
 *
21
 
 * $Id: http_negotiate.c,v 1.14 2005/03/31 07:02:03 bagder Exp $
 
21
 * $Id: http_negotiate.c,v 1.16 2006-05-04 22:39:47 bagder Exp $
22
22
 ***************************************************************************/
23
23
#include "setup.h"
24
24
 
34
34
#include <stdarg.h>
35
35
#include <stdlib.h>
36
36
#include <ctype.h>
37
 
#include <errno.h>
38
37
 
39
38
#include "urldata.h"
40
39
#include "sendf.h"
111
110
    gss_release_buffer(&min_stat, &status_string);
112
111
  } while (!GSS_ERROR(maj_stat) && msg_ctx != 0);
113
112
 
114
 
  infof(conn->data, buf);
 
113
  infof(conn->data, "%s", buf);
115
114
}
116
115
 
117
116
int Curl_input_negotiate(struct connectdata *conn, char *header)