diff --git a/eth/downloader/downloader.go b/eth/downloader/downloader.go
index 1f9ef598cd796fceb0726ac657f306ff50aef714..2aea30b397db3fff323c24eba54e8ef59adfc685 100644
--- a/eth/downloader/downloader.go
+++ b/eth/downloader/downloader.go
@@ -542,7 +542,7 @@ func (d *Downloader) fetchHeight(p *peer) (*types.Header, error) {
 // In the rare scenario when we ended up on a long reorganisation (i.e. none of
 // the head links match), we do a binary search to find the common ancestor.
 func (d *Downloader) findAncestor(p *peer, height uint64) (uint64, error) {
-	glog.V(logger.Debug).Infof("%v: looking for common ancestor", p)
+	glog.V(logger.Debug).Infof("%v: looking for common ancestor (remote height %d)", p, height)
 
 	// Figure out the valid ancestor range to prevent rewrite attacks
 	floor, ceil := int64(-1), d.headHeader().Number.Uint64()
diff --git a/eth/handler.go b/eth/handler.go
index 8723300f54a145bc0868c450b10ef4a73a3cd7bf..886d89fd19ee1d1cf859614e8175a56ebd7b308b 100644
--- a/eth/handler.go
+++ b/eth/handler.go
@@ -436,6 +436,7 @@ func (pm *ProtocolManager) handleMsg(p *peer) error {
 					return err
 				}
 				glog.V(logger.Debug).Infof("%v: verified to be on the same side of the DAO fork", p)
+				return nil
 			}
 			// Irrelevant of the fork checks, send the header to the fetcher just in case
 			headers = pm.fetcher.FilterHeaders(headers, time.Now())