Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
7e8ef764
Commit
7e8ef764
authored
Jan 07, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 08, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Rename HTTP_Base64 to HTTP_EncodeBase64 to more accurately reflect what it does.
parent
b624e812
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
http.c
dlls/wininet/http.c
+3
-3
No files found.
dlls/wininet/http.c
View file @
7e8ef764
...
...
@@ -846,9 +846,9 @@ end:
}
/***********************************************************************
* HTTP_Base64
* HTTP_
Decode
Base64
*/
static
UINT
HTTP_Base64
(
LPCWSTR
bin
,
LPWSTR
base64
)
static
UINT
HTTP_
Encode
Base64
(
LPCWSTR
bin
,
LPWSTR
base64
)
{
UINT
n
=
0
,
x
;
static
LPCSTR
HTTP_Base64Enc
=
...
...
@@ -914,7 +914,7 @@ static LPWSTR HTTP_EncodeBasicAuth( LPCWSTR username, LPCWSTR password)
lstrcatW
(
in
,
szColon
);
lstrcatW
(
in
,
password
);
lstrcpyW
(
out
,
szBasic
);
HTTP_Base64
(
in
,
&
out
[
strlenW
(
out
)]
);
HTTP_
Encode
Base64
(
in
,
&
out
[
strlenW
(
out
)]
);
}
HeapFree
(
GetProcessHeap
(),
0
,
in
);
...
...
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