Imported from ../bash-2.01.tar.gz.
[platform/upstream/bash.git] / builtins / getopts.def
index f3d9aee..a9c5116 100644 (file)
@@ -292,7 +292,10 @@ getopts_builtin (list)
   int ac, ret;
 
   if (list == 0)
-    return EXECUTION_FAILURE;
+    {
+      builtin_usage ();
+      return EX_USAGE;
+    }
 
   reset_internal_getopt ();
   while ((ret = internal_getopt (list, "")) != -1)