commit:     c612d50a976f7c35b7d97e7bc95a34def1bfecbf
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 19 20:40:09 2015 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Jul 19 20:40:55 2015 +0000
URL:        https://gitweb.gentoo.org/proj/musl.git/commit/?id=c612d50a

net-p2p/transmission: fix minor typos in commit message.

Package-Manager: portage-2.2.18
Manifest-Sign-Key: 0xF52D4BBA

 net-p2p/transmission/Manifest                                       | 2 +-
 .../transmission/files/transmission-2.84-musl-missing-header.patch  | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-p2p/transmission/Manifest b/net-p2p/transmission/Manifest
index 0ddb459..88f2dc7 100644
--- a/net-p2p/transmission/Manifest
+++ b/net-p2p/transmission/Manifest
@@ -1,5 +1,5 @@
 AUX transmission-2.80-translations-path-fix.patch 718 SHA256 
94951127429649d18af5d9f04f9a4c1f2c698266fc6ee17b43d83015e2218548 SHA512 
e317b23918fd47d27af3bca4694f8a71d6adb5f65ac5f3b30faa2d636d4420e6a691eca912c7be70103364f7c279f1b4ec851a5d8c5a1ca3dee880b465327fda
 WHIRLPOOL 
fbbabafb81d7e72fbf01a1b64d1c4a6e5473c254b14ed94e71e77ea8447982af3200ce76466df99d6cf9648c35f4e58dff83fe2cfd1b67b678c4b69a42982541
-AUX transmission-2.84-musl-missing-header.patch 1195 SHA256 
18df4a0304b9b328b3c205652bbe69a2e5fb267f67e5375979dc873aea67f705 SHA512 
e89dab3dc7f40631b7406240adebeedb2474153413fd7fadf9f67e608eb85b1b03f7604d19688df357345933e78a6a9512c2019dd48da04b76889d77f288fb28
 WHIRLPOOL 
d30e4ef44a8e198d1ecf570001a4c86eddfff889f9a4cb317c747b3565d952eeeff67361e26f120235baa30b10f3085ee96d0f62b8d3a878a13ede455eca1db0
+AUX transmission-2.84-musl-missing-header.patch 1196 SHA256 
a95f806242c02a4e41c2b4b0a08e031e552182c388faa821030bee595437b14c SHA512 
e1687ef2f38ce34053af37dbccdd8c33e6833ead1afb4a77ba2a913da1a41cf1643cce40d9199681d91e42ab8c886a55cf06852ccd6dd64914138c65d995a5de
 WHIRLPOOL 
9f7bb07eb332b3b755d6e47ab2e1641c95324f556b63aabc952a77928bd48464fa66b6a048905db6c3f3da626dd4e7f0cd11956de9e1753668453ca89c777e6b
 AUX transmission-daemon.confd.4 711 SHA256 
249689688aad23d0d27ccdd08a0907fd85058d6a52ccd3467f756b07f5d059ee SHA512 
dbc093fe00335bb207c28a4e810becc15e74b6f75e7579d561b160755d6b54bb23a45db39ee3480195a94a5e9bffdad692559d1b9662bba28119d18b713747a1
 WHIRLPOOL 
c19f3a6d46ff5cf824e9f3d9df2ec4364c17d424a406b3922921e3385801b543f736ed7dd8e1b7f24cd81262e2ac162edd92d7b6b832909012ae4cd677d94c1d
 AUX transmission-daemon.initd.9 2256 SHA256 
06d047b47befe6aaf1b1542fdd50e84ea38e0fef004b5095f6096f33fa1901a3 SHA512 
37205d2375b9baa631bb5b4cdc4d95b3bd63780aae118bce89286b1ea2f00859e276316519b7f0279ae8ce23423da79a60ae339d63ca0e131130912341d1a133
 WHIRLPOOL 
a067c9c48014b330624ff2db153991a866b381ebbe213194a7af1150cb4766a62a67323ce3346622912e2acba135a28a05f83db8824e568968a0e6f898da586b
 DIST transmission-2.84.tar.xz 3077836 SHA256 
a9fc1936b4ee414acc732ada04e84339d6755cd0d097bcbd11ba2cfc540db9eb SHA512 
d6c2b17e7f8180a41ac70f5b503dfdb0353c6419db25df1b393b18c987c56fda9e2fd4c3f4cda7f08c301877bd0b4711842c28121ceaaaae87f5792cc6c29a3d
 WHIRLPOOL 
375f9c981d9d2ac308896e8b7d66d3643796c8e97d64a1e0d6fd2bffaafa55988b90ddb4eb98330edf062e835c0c5ce76749e7e66bf6806333673beb7569f342

diff --git 
a/net-p2p/transmission/files/transmission-2.84-musl-missing-header.patch 
b/net-p2p/transmission/files/transmission-2.84-musl-missing-header.patch
index e37965e..4b3d7ee 100644
--- a/net-p2p/transmission/files/transmission-2.84-musl-missing-header.patch
+++ b/net-p2p/transmission/files/transmission-2.84-musl-missing-header.patch
@@ -1,13 +1,13 @@
 libtransmission/transmission.h: add missing <sys/types.h>
 
 transmission.h and several files including it, like bitfield.c and fdlimits.h
-make reference to ssize_t, off_t and other types defined in <sys/types.> but
+make reference to ssize_t, off_t and other types defined in <sys/types.h> but
 never include the header.  By including <sys/types.h> in transmission.h, the
 required type definitions are propagated to all files that need them.
 
 Not including <sys/types.h> on glibc and uClibc systems does not pose a problem
-because of the way the headers stack in those Standard C Libraries, but on musl
-exclusing <sys/types.h> leads to compile time failure.
+because of the way the headers stack in those C Standard Libraries, but on musl
+excluding <sys/types.h> leads to compile time failure.
 
 For the POSIX specs, see
 

Reply via email to