Blame SOURCES/ltrace-0.7.91-man.patch

d947ed
diff -up ltrace-0.7.91/options.c\~ ltrace-0.7.91/options.c
d947ed
--- ltrace-0.7.91/options.c~	2013-10-22 11:54:21.000000000 +0200
d947ed
+++ ltrace-0.7.91/options.c	2014-01-13 15:38:51.362221740 +0100
d947ed
@@ -128,6 +128,8 @@ usage_debug(void) {
d947ed
 			"\n"
d947ed
 			"Debugging options are mixed using bitwise-or.\n"
d947ed
 			"Note that the meanings and values are subject to change.\n"
d947ed
+			"Also note that these values are used inconsistently in ltrace, and the\n"
d947ed
+			"only debuglevel that you can rely on is -D77 that will show everything.\n"
d947ed
 		   );
d947ed
 }
d947ed
 
d947ed
diff -up ltrace-0.7.91/ltrace.1\~ ltrace-0.7.91/ltrace.1
d947ed
--- ltrace-0.7.91/ltrace.1~	2013-10-23 17:44:13.000000000 +0200
d947ed
+++ ltrace-0.7.91/ltrace.1	2014-01-13 15:51:24.236730677 +0100
d947ed
@@ -1,5 +1,5 @@
d947ed
 .\" -*-nroff-*-
d947ed
-.\" Copyright (c) 2012, 2013 Petr Machata, Red Hat Inc.
d947ed
+.\" Copyright (c) 2012,2013,2014 Petr Machata, Red Hat Inc.
d947ed
 .\" Copyright (c) 1997-2005 Juan Cespedes <cespedes@debian.org>
d947ed
 .\"
d947ed
 .\" This program is free software; you can redistribute it and/or
d947ed
@@ -118,9 +118,9 @@ Besides removing any initial underscore 
d947ed
 this makes C++ function names readable.
d947ed
 .IP "\-D, \-\-debug \fRmask\fI"
d947ed
 Show debugging output of \fBltrace\fR itself.  \fImask\fR is a number
d947ed
-with internal meaning that's not really well defined at all.
d947ed
-\fImask\fR of 77 shows all debug messages, which is what you usually
d947ed
-need.
d947ed
+describing which debug messages should be displayed.  Use the option
d947ed
+\-Dh to see what can be used, but note that currently the only
d947ed
+reliable debugmask is 77, which shows all debug messages.
d947ed
 .IP "\-e \fIfilter"
d947ed
 A qualifying expression which modifies which library calls to trace.
d947ed
 The format of the filter expression is described in the section
d947ed
@@ -156,7 +156,8 @@ dependency ordering.  If you want to mak
d947ed
 library are actually called, use \fB-x @\fIlibrary_pattern\fR instead.
d947ed
 .IP \-L
d947ed
 When no -e option is given, don't assume the default action of
d947ed
-\fB@MAIN\fR.
d947ed
+\fB@MAIN\fR.  In practice this means that library calls will not be
d947ed
+traced.
d947ed
 .IP "\-n, \-\-indent \fInr"
d947ed
 Indent trace output by \fInr\fR spaces for each level of call
d947ed
 nesting. Using this option makes the program flow visualization easy