I know what the original question mean, and the answer is not wget -c ...
The scenario can be described like this:
# Start mirroring a site
wget -m http://...
# 400MB later wget died or interrupted,
# don't know where it left off, don't care,
# just want to get the remaining 100MB without getting the first 400MB again
wget -nc -r -l inf --no-remove-listing http://...
Options "-r -l inf --no-remove-listing" is equivalent to -m without the -N parameter. Adding the -nc parameter avoid saving the first 400MB already in your hard drive.