summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--audio/mpc/distinfo3
-rw-r--r--audio/mpc/patches/patch-ab17
-rw-r--r--security/seahorse/distinfo3
-rw-r--r--security/seahorse/patches/patch-ae18
4 files changed, 39 insertions, 2 deletions
diff --git a/audio/mpc/distinfo b/audio/mpc/distinfo
index e5147da8617..af621055721 100644
--- a/audio/mpc/distinfo
+++ b/audio/mpc/distinfo
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.5 2005/06/01 03:35:21 simonb Exp $
+$NetBSD: distinfo,v 1.6 2005/06/14 01:34:54 kristerw Exp $
SHA1 (mpc-0.11.2.tar.gz) = b318ffdf4d27c14f761070b83dec3a3433612586
RMD160 (mpc-0.11.2.tar.gz) = 823eca5e82fb4b2f4d219d70b176673575576a14
Size (mpc-0.11.2.tar.gz) = 103483 bytes
SHA1 (patch-aa) = c013d21aae786eb2aa2c562f29d9e5a84150995f
+SHA1 (patch-ab) = 9fd058c97c37fac4de1189efe3ba365a1a94ffba
diff --git a/audio/mpc/patches/patch-ab b/audio/mpc/patches/patch-ab
new file mode 100644
index 00000000000..abb385873b7
--- /dev/null
+++ b/audio/mpc/patches/patch-ab
@@ -0,0 +1,17 @@
+$NetBSD: patch-ab,v 1.4 2005/06/14 01:34:54 kristerw Exp $
+
+--- src/command.c.orig Tue Jun 14 03:30:30 2005
++++ src/command.c Tue Jun 14 03:32:26 2005
+@@ -183,10 +183,11 @@
+ int cmd_crop( int argc, char ** argv, mpd_Connection * conn )
+ {
+
++ int length;
+ mpd_Status *status;
+ status = getStatus( conn );
+
+- int length = ( status->playlistLength - 1 );
++ length = ( status->playlistLength - 1 );
+
+ if( status->playlistLength == 0 ) {
+
diff --git a/security/seahorse/distinfo b/security/seahorse/distinfo
index 9a790fe2d53..3bcc2d321ff 100644
--- a/security/seahorse/distinfo
+++ b/security/seahorse/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.12 2005/05/19 21:14:11 jmmv Exp $
+$NetBSD: distinfo,v 1.13 2005/06/14 00:58:45 kristerw Exp $
SHA1 (seahorse-0.7.8.tar.bz2) = 0d4b870555aeed34662ae7edd1cd96bc2a4e7be9
RMD160 (seahorse-0.7.8.tar.bz2) = 5fb7711a5bac0848a4577bf74fc6e097828de5c7
@@ -7,3 +7,4 @@ SHA1 (patch-aa) = b7dbb53b1a012345b13426f50f76a523ff839536
SHA1 (patch-ab) = 38d3f9ab9a46209f363d2b772d079cde1af83ed2
SHA1 (patch-ac) = a17c31e312b10d7ba781289b70060ed34a1c006b
SHA1 (patch-ad) = a7abc7a29a422ec229545f626f37ae173ba56db7
+SHA1 (patch-ae) = cb7e6555d94adc9d2d6a4e0250bd7717c8207f87
diff --git a/security/seahorse/patches/patch-ae b/security/seahorse/patches/patch-ae
new file mode 100644
index 00000000000..d7c24206b3d
--- /dev/null
+++ b/security/seahorse/patches/patch-ae
@@ -0,0 +1,18 @@
+$NetBSD: patch-ae,v 1.1 2005/06/14 00:58:45 kristerw Exp $
+
+--- libseahorse/seahorse-server-source.c.orig Tue Jun 14 02:26:00 2005
++++ libseahorse/seahorse-server-source.c Tue Jun 14 02:26:25 2005
+@@ -519,11 +519,12 @@
+ seahorse_server_source_get_state (SeahorseKeySource *src)
+ {
+ SeahorseServerSource *ssrc;
++ guint state;
+
+ g_return_val_if_fail (SEAHORSE_IS_SERVER_SOURCE (src), 0);
+ ssrc = SEAHORSE_SERVER_SOURCE (src);
+
+- guint state = SEAHORSE_KEY_SOURCE_REMOTE;
++ state = SEAHORSE_KEY_SOURCE_REMOTE;
+ if (!seahorse_operation_is_done (ssrc->priv->operation))
+ state |= SEAHORSE_KEY_SOURCE_LOADING;
+ return state;