diff options
Diffstat (limited to 'WWW/Library/Implementation/HTAccess.c')
-rw-r--r-- | WWW/Library/Implementation/HTAccess.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/HTAccess.c b/WWW/Library/Implementation/HTAccess.c index 0c85ae52..0ebb2c17 100644 --- a/WWW/Library/Implementation/HTAccess.c +++ b/WWW/Library/Implementation/HTAccess.c @@ -831,6 +831,14 @@ PRIVATE BOOL HTLoadDocument ARGS4( } return YES; } + if (status == HT_PARTIAL_CONTENT) { + HTAlert("Loading incomplete."); + if (TRACE) { + fprintf(stderr, "HTAccess: `%s' has been accessed, partial content.\n", + full_address); + } + return YES; + } if (status == HT_NO_DATA) { if (TRACE) { |