Package: obexftp Version: 0.10.6-3 Tags: patch Followup-For: Bug #251252 Very close, but off by 1 error keeps it broken. (No idea how this bug got in there in the first place. Byte 1 is "reserved" in the structure.)
Adam -- System Information: Debian Release: 3.1 APT prefers unstable APT policy: (500, 'unstable'), (1, 'experimental') Architecture: i386 (i686) Kernel: Linux 2.6.9 Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) Versions of packages obexftp depends on: ii libbluetooth1 2.11-1 Library to use the BlueZ Linux Blu ii libc6 2.3.2.ds1-20 GNU C Library: Shared libraries an ii libopenobex-1.0-0 1:1.0.0-rel-3 OBEX protocol library -- no debconf information
--- obexftp/object.c~ 2005-01-12 15:48:04.000000000 -0500 +++ obexftp/object.c 2005-01-12 15:48:19.000000000 -0500 @@ -200,7 +200,7 @@ if (create == 0) { // set the 'Don't Create' bit - setpath_nohdr_data[1] |= 2; + setpath_nohdr_data[0] |= 2; } if (name) { ucname_len = strlen(name)*2 + 2;