IrOBEX specification chap. 2.2.3 states that the Type header is an ASCII
null-terminated string which values are case insensitive (as it is also
defined by RFC 1521).
---
src/mimetype.c | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/src/mimetype.c b/src/mimetype.c
index 078d97c..4e3573c 100644
--- a/src/mimetype.c
+++ b/src/mimetype.c
@@ -135,7 +135,14 @@ static struct obex_mime_type_driver *find_driver(const uint8_t *target,
if (memncmp0(who, who_size, driver->who, driver->who_size))
continue;
- if (g_strcmp0(mimetype, driver->mimetype) == 0)
+ if (mimetype == NULL || driver->mimetype == NULL) {
+ if (mimetype == driver->mimetype)
+ return driver;
+ else
+ continue;
+ }
+
+ if (g_ascii_strcasecmp(mimetype, driver->mimetype) == 0)
return driver;
}
--
1.7.4.1
Hi Slawek,
On Thu, Jul 21, 2011, Slawomir Bochenski wrote:
> IrOBEX specification chap. 2.2.3 states that the Type header is an ASCII
> null-terminated string which values are case insensitive (as it is also
> defined by RFC 1521).
> ---
> src/mimetype.c | 9 ++++++++-
> 1 files changed, 8 insertions(+), 1 deletions(-)
Applied. Thanks.
Johan
Hi,
On Thu, Jul 21, 2011 at 2:07 PM, Slawomir Bochenski <[email protected]> wrote:
> On Thu, Jul 21, 2011 at 12:56 PM, Slawomir Bochenski <[email protected]> wrote:
>> IrOBEX specification chap. 2.2.3 states that the Type header is an ASCII
>> null-terminated string which values are case insensitive (as it is also
>> defined by RFC 1521).
>
> s/which/whose/
>
> --
Nice catch, ack.
--
Luiz Augusto von Dentz
On Thu, Jul 21, 2011 at 12:56 PM, Slawomir Bochenski <[email protected]> wrote:
> IrOBEX specification chap. 2.2.3 states that the Type header is an ASCII
> null-terminated string which values are case insensitive (as it is also
> defined by RFC 1521).
s/which/whose/
--
Slawomir Bochenski