2010-03-30 18:07:21

by João Paulo Rechi Vita

[permalink] [raw]
Subject: [PATCH] Fix bootstrap-configure command line parsing

---
bootstrap-configure | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/bootstrap-configure b/bootstrap-configure
index 44e7ee8..5b7b88f 100755
--- a/bootstrap-configure
+++ b/bootstrap-configure
@@ -8,4 +8,4 @@ fi
./configure --enable-maintainer-mode \
--enable-debug \
--prefix=/usr \
- --mandir=/usr/share/man
+ --mandir=/usr/share/man $*
--
1.6.3.3



2010-03-30 18:52:23

by Gustavo Padovan

[permalink] [raw]
Subject: [PATCH] Add new S-frame types to l2cap parser

---
parser/l2cap.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/parser/l2cap.c b/parser/l2cap.c
index 799d4b7..ad3b7ff 100644
--- a/parser/l2cap.c
+++ b/parser/l2cap.c
@@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
case 0x01:
return "Reject (REJ)";
case 0x02:
+ return "Receiver Not Ready (RNR)";
case 0x03:
- return "Reserved Supervisory";
+ return "Select Reject (SREJ)";
default:
return "Bad Supervisory";
}
--
1.6.4.4

2010-03-30 18:08:34

by João Paulo Rechi Vita

[permalink] [raw]
Subject: Re: [PATCH] Fix bootstrap-configure command line parsing

2010/3/30 João Paulo Rechi Vita <[email protected]>:
> ---
>  bootstrap-configure |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/bootstrap-configure b/bootstrap-configure
> index 44e7ee8..5b7b88f 100755
> --- a/bootstrap-configure
> +++ b/bootstrap-configure
> @@ -8,4 +8,4 @@ fi
>     ./configure --enable-maintainer-mode \
>                --enable-debug \
>                --prefix=/usr \
> -               --mandir=/usr/share/man
> +               --mandir=/usr/share/man $*
> --
> 1.6.3.3
>
>

This patch is to bluez-hcidump.

--
João Paulo Rechi Vita
http://jprvita.wordpress.com/

2010-04-28 15:56:56

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Add new S-frame types to l2cap parser

Hi,

On Tue, Mar 30, 2010, Gustavo F. Padovan wrote:
> ---
> parser/l2cap.c | 3 ++-
> 1 files changed, 2 insertions(+), 1 deletions(-)
>
> diff --git a/parser/l2cap.c b/parser/l2cap.c
> index 799d4b7..ad3b7ff 100644
> --- a/parser/l2cap.c
> +++ b/parser/l2cap.c
> @@ -352,8 +352,9 @@ static char *supervisory2str(uint8_t supervisory)
> case 0x01:
> return "Reject (REJ)";
> case 0x02:
> + return "Receiver Not Ready (RNR)";
> case 0x03:
> - return "Reserved Supervisory";
> + return "Select Reject (SREJ)";
> default:
> return "Bad Supervisory";
> }

This one has now been pushed to the upstream bluez-hcidump tree. Thanks.

Johan

2010-04-28 15:41:46

by Johan Hedberg

[permalink] [raw]
Subject: Re: [PATCH] Fix bootstrap-configure command line parsing

Hi,

On Tue, Mar 30, 2010, Jo?o Paulo Rechi Vita wrote:
> ---
> bootstrap-configure | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/bootstrap-configure b/bootstrap-configure
> index 44e7ee8..5b7b88f 100755
> --- a/bootstrap-configure
> +++ b/bootstrap-configure
> @@ -8,4 +8,4 @@ fi
> ./configure --enable-maintainer-mode \
> --enable-debug \
> --prefix=/usr \
> - --mandir=/usr/share/man
> + --mandir=/usr/share/man $*

This patch has now been pushed upstream. Thanks.

Johan