Differences From:
File
src/http.c
part of check-in
[8372cc0b81]
- Socket operations now functional in Win32 port. Added quotes around the filename portion of the command to edit thus working of windows in paths where the temp directory contains spaces. Added -all flag to clean command. If not specified each file is prompted for before removing.
by
jnc on
2007-09-22 18:34:49.
Also file
src/http.c
part of check-in
[3c5482959c]
- Merge in the w32 changes.
by
drh on
2007-09-22 19:43:55.
[view]
To:
File
src/http.c
part of check-in
[e63a9fd9d0]
- Fixed many uninitialized variable warnings and some potential bug found via -Wall -Werror on gcc.
by
jnc on
2007-09-25 21:21:35.
Also file
src/http.c
part of check-in
[92291035fe]
- Merged the compiler warning fixes into mainstream
by
jnc on
2007-09-25 21:28:30.
Also file
src/http.c
part of check-in
[d0305b305a]
- Merged mainline into my branch to get the newest application.
by
aku on
2007-12-05 08:07:46.
[view]
@@ -122,8 +122,9 @@
#endif
return 0;
}
+#ifdef __MINGW32__
/*
** Read the socket until a newline '\n' is found. Return the number
** of characters read. pSockId contains the socket handel. pOut
** contains a pointer to the buffer to write to. pOutSize contains
@@ -168,8 +169,9 @@
blob_append(pBlob, rbuf, read);
}
return blob_size(pBlob);
}
+#endif
/*
** Make a single attempt to talk to the server. Return TRUE on success
** and FALSE on a failure.