Index: includes/features.menu.inc
===================================================================
--- includes/features.menu.inc	(revision 74)
+++ includes/features.menu.inc	(working copy)
@@ -129,6 +129,10 @@
  * Implementation of hook_features_export_options().
  */
 function menu_links_features_export_options() {
+  global $menu_admin;
+  // Need to set this to TRUE in order to get menu links that the
+  // current user may not have access to (i.e. user/login)
+  $menu_admin = TRUE;
   $menu_links = menu_parent_options(array_reverse(menu_get_menus()), NULL);
   $options = array();
   foreach ($menu_links as $key => $name) {
@@ -139,6 +143,7 @@
       $options[$identifier] = "{$menu_name}: {$name}";
     }
   }
+  $menu_admin = FALSE;
   return $options;
 }
 
