85005f1
diff --git a/manpages/bacula-dir.8 b/manpages/bacula-dir.8
85005f1
index 50056e8..0486bf4 100644
85005f1
--- a/manpages/bacula-dir.8
85005f1
+++ b/manpages/bacula-dir.8
85005f1
@@ -37,6 +37,9 @@ Run in foreground (for debugging).
85005f1
 .BI \-g\  group
85005f1
 Set the group/gid to run as.
85005f1
 .TP
85005f1
+.BI \-m 
85005f1
+Print kaboom output (for debugging)
85005f1
+.TP
85005f1
 .BI \-r\  job
85005f1
 Run <job>.
85005f1
 .TP
85005f1
diff --git a/manpages/bacula-fd.8 b/manpages/bacula-fd.8
85005f1
index 2dfbf9e..d0b2169 100644
85005f1
--- a/manpages/bacula-fd.8
85005f1
+++ b/manpages/bacula-fd.8
85005f1
@@ -39,12 +39,12 @@ Run in foreground (for debugging).
85005f1
 .BI \-g\  group
85005f1
 Set the group/gid to run as.
85005f1
 .TP
85005f1
-.BI \-p
85005f1
-Proceed inspite of I/O errors
85005f1
-.TP
85005f1
 .BI \-k
85005f1
 Keep readall permission when dropping privileges.
85005f1
 .TP
85005f1
+.BI \-m
85005f1
+Print kaboom output (for debugging)
85005f1
+.TP
85005f1
 .BI \-s
85005f1
 No signals (for debugging).
85005f1
 .TP
85005f1
diff --git a/manpages/bacula-sd.8 b/manpages/bacula-sd.8
85005f1
index 6dd36dc..aed27a3 100644
85005f1
--- a/manpages/bacula-sd.8
85005f1
+++ b/manpages/bacula-sd.8
85005f1
@@ -40,6 +40,9 @@ Set the group/gid to run as.
85005f1
 .BI \-p
85005f1
 Proceed in spite of I/O errors
85005f1
 .TP
85005f1
+.BI \-m
85005f1
+Print kaboom output (for debugging)
85005f1
+.TP
85005f1
 .BI \-s
85005f1
 No signals (for debugging).
85005f1
 .TP
85005f1
diff --git a/manpages/bconsole.8 b/manpages/bconsole.8
85005f1
index a765b2e..d12bd2d 100644
85005f1
--- a/manpages/bconsole.8
85005f1
+++ b/manpages/bconsole.8
85005f1
@@ -18,6 +18,12 @@ command.
85005f1
 .PP
85005f1
 .SH OPTIONS
85005f1
 .TP
85005f1
+.BI \-D\  dir
85005f1
+Select a Director.
85005f1
+.TP
85005f1
+.BI \-l
85005f1
+List defined Directors.
85005f1
+.TP
85005f1
 .BI \-c\  config
85005f1
 Specify configuration file.
85005f1
 .TP
85005f1
@@ -33,6 +39,9 @@ No conio (for scripting).
85005f1
 .B \-s
85005f1
 No signals (for debugging).
85005f1
 .TP
85005f1
+.b \-u\  nn
85005f1
+Set command execution timeout to \fInn\fP seconds
85005f1
+.TP
85005f1
 .B \-t
85005f1
 Test the configuration file and report errors.
85005f1
 .TP
85005f1
diff --git a/manpages/btape.8 b/manpages/btape.8
85005f1
index dff8d0e..3a149dc 100644
85005f1
--- a/manpages/btape.8
85005f1
+++ b/manpages/btape.8
85005f1
@@ -38,9 +38,6 @@ Set debug level to \fInn\fP.
85005f1
 .BI \-p
85005f1
 Proceed inspite of I/O errors.
85005f1
 .TP
85005f1
-.B \-t
85005f1
-Open the default tape device.
85005f1
-.TP
85005f1
 .B \-s
85005f1
 No signals (for debugging).
85005f1
 .TP
85005f1
diff --git a/src/console/console.c b/src/console/console.c
85005f1
index 999515f..40ca8f6 100644
85005f1
--- a/src/console/console.c
85005f1
+++ b/src/console/console.c
85005f1
@@ -1019,7 +1019,7 @@ int main(int argc, char *argv[])
85005f1
    working_directory = "/tmp";
85005f1
    args = get_pool_memory(PM_FNAME);
85005f1
 
85005f1
-   while ((ch = getopt(argc, argv, "D:lbc:d:nstu:?")) != -1) {
85005f1
+   while ((ch = getopt(argc, argv, "D:lc:d:nstu:?")) != -1) {
85005f1
       switch (ch) {
85005f1
       case 'D':                    /* Director */
85005f1
          if (director) {