This is a fix to an issue I ran into when dealing with a single sign on system. Cookies should be unique per request by name and domain, but Rack currently only treats them as unique by name. This commit basically makes it possible to delete cookie "foo" on both www.example.com and .example.com.

-Zach Brock