Index: wp-includes/link-template.php
===================================================================
--- wp-includes/link-template.php	(revision 11455)
+++ wp-includes/link-template.php	(working copy)
@@ -1207,8 +1207,9 @@
 
 	$title = apply_filters('the_title', $title, $post);
 	$date = mysql2date(get_option('date_format'), $post->post_date);
+	$rel = $previous ? 'prev' : 'next';
 
-	$string = '<a href="'.get_permalink($post).'">';
+	$string = '<a href="'.get_permalink($post).'" rel="'.$rel.'">';
 	$link = str_replace('%title', $title, $link);
 	$link = str_replace('%date', $date, $link);
 	$link = $string . $link . '</a>';
