secur32: Move NTLM debug output to a seperate "ntlm" channel.

This commit is contained in:
Kai Blin 2007-04-14 17:20:37 +02:00 committed by Alexandre Julliard
parent b934fc90eb
commit 7e6c5aad3c
4 changed files with 4 additions and 4 deletions

View file

@ -23,7 +23,7 @@
#include "sspi.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(secur32);
WINE_DEFAULT_DEBUG_CHANNEL(ntlm);
static const char b64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

View file

@ -39,7 +39,7 @@
#define INITIAL_BUFFER_SIZE 200
WINE_DEFAULT_DEBUG_CHANNEL(secur32);
WINE_DEFAULT_DEBUG_CHANNEL(ntlm);
SECURITY_STATUS fork_helper(PNegoHelper *new_helper, const char *prog,
char* const argv[])

View file

@ -31,7 +31,7 @@
#include "hmac_md5.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(secur32);
WINE_DEFAULT_DEBUG_CHANNEL(ntlm);
#define NTLM_MAX_BUF 1904
#define MIN_NTLM_AUTH_MAJOR_VERSION 3

View file

@ -28,7 +28,7 @@
#include "secur32_priv.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(secur32);
WINE_DEFAULT_DEBUG_CHANNEL(ntlm);
/* The CRC32 code is copyright (C) 1986 Gary S. Brown and was placed in the
* public domain.