Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
7e6c5aad
Commit
7e6c5aad
authored
Apr 14, 2007
by
Kai Blin
Committed by
Alexandre Julliard
Apr 16, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
secur32: Move NTLM debug output to a seperate "ntlm" channel.
parent
b934fc90
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
base64_codec.c
dlls/secur32/base64_codec.c
+1
-1
dispatcher.c
dlls/secur32/dispatcher.c
+1
-1
ntlm.c
dlls/secur32/ntlm.c
+1
-1
util.c
dlls/secur32/util.c
+1
-1
No files found.
dlls/secur32/base64_codec.c
View file @
7e6c5aad
...
...
@@ -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+/"
;
...
...
dlls/secur32/dispatcher.c
View file @
7e6c5aad
...
...
@@ -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
[])
...
...
dlls/secur32/ntlm.c
View file @
7e6c5aad
...
...
@@ -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
...
...
dlls/secur32/util.c
View file @
7e6c5aad
...
...
@@ -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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment