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
6790d825
Commit
6790d825
authored
Nov 25, 2015
by
Jacek Caban
Committed by
Alexandre Julliard
Nov 26, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet: Improved debug traces.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
5269fdce
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
ftp.c
dlls/wininet/ftp.c
+2
-2
No files found.
dlls/wininet/ftp.c
View file @
6790d825
...
...
@@ -2309,7 +2309,7 @@ BOOL WINAPI FtpCommandW( HINTERNET hConnect, BOOL fExpectResponse, DWORD dwFlags
strcat
(
cmd
,
szCRLF
);
len
--
;
TRACE
(
"Sending (%s) len(%d)
\n
"
,
cmd
,
len
);
TRACE
(
"Sending (%s) len(%d)
\n
"
,
debugstr_a
(
cmd
)
,
len
);
while
((
nBytesSent
<
len
)
&&
(
nRC
!=
-
1
))
{
nRC
=
sock_send
(
lpwfs
->
sndSocket
,
cmd
+
nBytesSent
,
len
-
nBytesSent
,
0
);
...
...
@@ -2728,7 +2728,7 @@ static BOOL FTP_SendCommandA(INT nSocket, FTP_COMMAND ftpCmd, LPCSTR lpszParam,
sprintf
(
buf
,
"%s%s%s%s"
,
szFtpCommands
[
ftpCmd
],
dwParamLen
?
" "
:
""
,
dwParamLen
?
lpszParam
:
""
,
szCRLF
);
TRACE
(
"Sending (%s) len(%d)
\n
"
,
buf
,
len
);
TRACE
(
"Sending (%s) len(%d)
\n
"
,
debugstr_a
(
buf
)
,
len
);
while
((
nBytesSent
<
len
)
&&
(
nRC
!=
-
1
))
{
nRC
=
sock_send
(
nSocket
,
buf
+
nBytesSent
,
len
-
nBytesSent
,
0
);
...
...
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