History log of /external/libmtp/src/mtpz.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
bcb8018d6208fde121eb73da2437481b9c63335d 02-Jun-2017 Marcus Meissner <marcus@jet.franken.de> added a missing return for unknown keysizes (GCC7)
/external/libmtp/src/mtpz.c
210e21844b98d8aed47aa4cce113c2a7426ad2e9 01-Apr-2015 Marcus Meissner <marcus@jet.franken.de> do not report missing .mtpz-data files, most common output
line ever.
/external/libmtp/src/mtpz.c
68423fd71ad8b55fdc9d1f86ca4bbe3474a82b35 22-Mar-2015 Reverend Homer <mk.43.ecko@gmail.com> Fixed the style of the if-statement in mtpz_loaddata()

This commit replaces this block

if (ret == PTP_RC_OK)
{
/* lots of code */
}
else
{
LIBMTP_INFO("failure!\n");
}

with this

if (ret != PTP_RC_OK)
{
LIBMTP_INFO("failure!\n");
return ret;
}
/* lots of code */

So, it makes the code more readable
/external/libmtp/src/mtpz.c
7ba5e0cf4e9c33127dc035aa82dcb27c83f42d68 20-Mar-2015 Marcus Meissner <marcus@jet.franken.de> further cleanups on top of last cleanup
/external/libmtp/src/mtpz.c
000856b4681640e271c34009a7ff1479ef761011 20-Mar-2015 Reverend Homer <mk.43.ecko@gmail.com> Fixed resource leak in mtpz_loaddata

Signed-off-by: Reverend Homer <mk.43.ecko@gmail.com>
/external/libmtp/src/mtpz.c
bb695b12fa7a8773fe79e81f880cfb07a38ef60a 24-Aug-2014 Linus Walleij <triad@df.lth.se> Revert "De-externalize use_mtpz."

This reverts commit 8f5da8fc9050448ca5da4ffeb4796e9e6eca8a35.

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
1bf919f6295038baa5de725569c5852f83d76039 17-Aug-2014 Sami Farin <hvtaifwkbgefbaei@gmail.com> zeroize mtpz_rsa_t properly

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
8f5da8fc9050448ca5da4ffeb4796e9e6eca8a35 03-Jun-2014 Linus Walleij <triad@df.lth.se> De-externalize use_mtpz.

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
be42de0e778672cdb3a370e337b5bbc75db53bb7 25-Dec-2013 Wieland Hoffmann <themineo@gmail.com> Print a newline after "MTPZ disabled" messages

Signed-off-by: Wieland Hoffmann <themineo@gmail.com>
Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
9f935573e2b034856c96ec92c17bab421e35aa17 06-Nov-2013 Robert Milasan <rmilasan@suse.com> Use LIBMTP_ERROR instead of LIBMTP_INFO in mtpz_loaddata

Use LIBMTP_ERROR instead of LIBMTP_INFO in mtpz_loaddata,
otherwise if we encounter an error while generating the
udev rule, the error message will end-up to be part of the
rule as LIBMTP_INFO uses stdout.

linux-qdip:~ # head -3 /usr/lib/udev/rules.d/69-libmtp.rules
Unable to open ~/.mtpz-data for reading, MTPZ disabled.# UDEV-style hotplug map for libmtp

Signed-off-by: Robert Milasan <rmilasan@suse.com>
Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
faf197f37f40b31bc1005a2a510ae2541e78c74c 16-Mar-2013 Brad Smith <brad@comstyle.com> Fix building libmtp with older GCC versions / non GCC compilers

Here is an updated diff also build tested with gcc 4.6.

Signed-off-by: Brad Smith <brad@comstyle.com>
/external/libmtp/src/mtpz.c
2fabdbdb34da2442490579a9b3d835dbab03dff3 24-Feb-2013 Linus Walleij <triad@df.lth.se> Small MTPZ-free update

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
f03e7e85f21de457a941773692c782f6bdef6448 29-Sep-2012 Linus Walleij <triad@df.lth.se> Fix to some MTPZ error messages

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
02ef40c1a4735f56aff5ecd57b9694c88625ffa8 25-Aug-2012 Linus Walleij <triad@df.lth.se> Fixup and disclaimer.

Signed-off-by: Linus Walleij <triad@df.lth.se>
/external/libmtp/src/mtpz.c
8dca41df0b4b0c4a93c66e7098200f36be595e7b 18-Aug-2012 Sajid Anwar <sajidanwar94@gmail.com> Initial MTPZ support.

Signed-off-by: Sajid Anwar <sajidanwar94@gmail.com>
/external/libmtp/src/mtpz.c