linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [Bluez-devel] hciattach patch: make the device string longer
@ 2005-12-02 14:57 Arjan Schrijver
  2005-12-02 15:03 ` Marcel Holtmann
  0 siblings, 1 reply; 3+ messages in thread
From: Arjan Schrijver @ 2005-12-02 14:57 UTC (permalink / raw)
  To: bluez-devel

Hi people,

For our port on the HP Ipaq 1940, we want to use Bluez as the bluetooth 
library.
Our work is mostly based at handhelds.org, we want to have the Familiar 
distribution on our devices too.
We were having some problems with hciattach not working as it should, 
and finally pinpointed it on one specific line.
At the top of main() in hciattach.c, the device node is put in a 
variable 'dev', which is only 20 bytes long. The problem is that our 
device is (with null-termination character) exactly 21 bytes long.
So that's why I propose the patch at the bottom of this mail, it's 
actually a 1-character patch.
Excuse me if I break into existing conversations, or this has already 
been fixed in CVS. (I only checked the latest release)
Thanks in advance for your comments!

Regards, Arjan Schrijver


--- tools/hciattach.c.old       2005-12-02 10:51:22.000000000 +0100
+++ tools/hciattach.c   2005-12-02 10:52:17.000000000 +0100
@@ -968,7 +968,7 @@
        int send_break = 0;
        pid_t pid;
        struct sigaction sa;
-       char dev[20];
+       char dev[25];

        detach = 1;
        printpid = 0;




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
Bluez-devel mailing list
Bluez-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bluez-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-12-02 15:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-02 14:57 [Bluez-devel] hciattach patch: make the device string longer Arjan Schrijver
2005-12-02 15:03 ` Marcel Holtmann
2005-12-02 15:08   ` Arjan Schrijver

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).