diff options
author | heinz <heinz@pkgsrc.org> | 2009-08-09 13:39:06 +0000 |
---|---|---|
committer | heinz <heinz@pkgsrc.org> | 2009-08-09 13:39:06 +0000 |
commit | 5f5bedcaff79d89a3db043a961a031677eeee06a (patch) | |
tree | c32242a301374832e706fbb4bb1a4df49ce0a494 /misc | |
parent | 37ef6abde2c40e4500a3e091268e9c2dfaacfdb9 (diff) | |
download | pkgsrc-5f5bedcaff79d89a3db043a961a031677eeee06a.tar.gz |
Make esniper use case sensitive passwords. Patch was committed upstream
today and will be in the next release.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/esniper/Makefile | 3 | ||||
-rw-r--r-- | misc/esniper/distinfo | 3 | ||||
-rw-r--r-- | misc/esniper/patches/patch-ab | 16 |
3 files changed, 20 insertions, 2 deletions
diff --git a/misc/esniper/Makefile b/misc/esniper/Makefile index b78e288cf62..98e4c1645e8 100644 --- a/misc/esniper/Makefile +++ b/misc/esniper/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.13 2008/10/14 18:21:18 heinz Exp $ +# $NetBSD: Makefile,v 1.14 2009/08/09 13:39:06 heinz Exp $ # DISTNAME= esniper-2-19-0 PKGNAME= esniper-2.19.0 +PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=esniper/} EXTRACT_SUFX= .tgz diff --git a/misc/esniper/distinfo b/misc/esniper/distinfo index 04ad34d504a..7d878d5a8cf 100644 --- a/misc/esniper/distinfo +++ b/misc/esniper/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.10 2008/10/14 18:21:18 heinz Exp $ +$NetBSD: distinfo,v 1.11 2009/08/09 13:39:06 heinz Exp $ SHA1 (esniper-2-19-0.tgz) = eee1e30f68e889dafdb896c691f88ba1ae0e1d55 RMD160 (esniper-2-19-0.tgz) = 004d67d558ccec5fb1626671c3d3ca4d7bf86b56 Size (esniper-2-19-0.tgz) = 110571 bytes +SHA1 (patch-ab) = 349fea6599aeac0f5a365c80aa27db78fc83b706 diff --git a/misc/esniper/patches/patch-ab b/misc/esniper/patches/patch-ab new file mode 100644 index 00000000000..f751d16f859 --- /dev/null +++ b/misc/esniper/patches/patch-ab @@ -0,0 +1,16 @@ +$NetBSD: patch-ab,v 1.1 2009/08/09 13:39:06 heinz Exp $ + + eBay Passwords are case-sensitive. Patch committed upstream, see revision + 1.40 of util.c. + http://sourceforge.net/tracker/index.php?func=detail&aid=2819198&group_id=45285&atid=442436 + +--- util.c.orig 2008-08-05 05:44:43.000000000 +0200 ++++ util.c +@@ -640,7 +640,6 @@ setPassword(char *password) + + /* http escape password, clear original */ + len = strlen(password); +- toLowerString(password); + escapedPassword = curl_escape(password, len); + for (i = 0; i < len; ++i) + password[i] = '\0'; |