Blame SOURCES/bacula-help-update.patch

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