Index: includes/drush.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/drush/includes/drush.inc,v
retrieving revision 1.185
diff -u -p -r1.185 drush.inc
--- includes/drush.inc	3 Jan 2011 19:07:11 -0000	1.185
+++ includes/drush.inc	3 Jan 2011 23:25:24 -0000
@@ -987,12 +987,12 @@ function drush_choice_multiple($options,
  *   The text which is displayed to the user.
  * @param $default
  *   The default value of the input.
- * @param $optional
+ * @param $required
  *   If TRUE, user may continue even when no value is in the input.
  *
  * @see drush_confirm()
  */
-function drush_prompt($prompt, $default = NULL, $optional = FALSE) {
+function drush_prompt($prompt, $default = NULL, $required = TRUE) {
   if (!is_null($default)) {
     $prompt .= " [" . $default . "]";
   }
@@ -1011,7 +1011,7 @@ function drush_prompt($prompt, $default 
     if ($line === "") {
       $line = $default;
     }
-    if ($line || $optional) {
+    if ($line || !$required) {
       break;
     }
     print $prompt;
