One of the feed URLs in the header does show the category with /feed/ at the end of the URL, but the feed link that appears next to the comments link and post date is not a complete fed URL, i.e., not ending in /feed/ . So I think there's confusion on the themes' part as to the link being a feed - because it's right next to the feed icon - or just a link to that category of posts, like many WP themes have.
You could modify the theme to have an RSS link there instead of the category. This will display a feed lnk for whatever category page isbeing displayed:
<?php
$this_category = get_category($cat);// This line just gets the active category information
print '<a href="'.get_category_feed_link($this_category->cat_ID, '').'">Subscribe</a>';
?>