diff options
author | joerg <joerg@pkgsrc.org> | 2014-03-06 15:43:23 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2014-03-06 15:43:23 +0000 |
commit | bd685f7628371f004909ef443820a7ce49a2d9f5 (patch) | |
tree | a6a341a5a034519782ad2b1f9f87842853576695 /chat/telepathy-gabble | |
parent | 61cbc26507050b11f9c248541a2b0ab52b6fbfab (diff) | |
download | pkgsrc-bd685f7628371f004909ef443820a7ce49a2d9f5.tar.gz |
Fix test case to make sense.
Diffstat (limited to 'chat/telepathy-gabble')
-rw-r--r-- | chat/telepathy-gabble/distinfo | 4 | ||||
-rw-r--r-- | chat/telepathy-gabble/patches/patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/chat/telepathy-gabble/distinfo b/chat/telepathy-gabble/distinfo index 5dadf0be4db..36cc766db3d 100644 --- a/chat/telepathy-gabble/distinfo +++ b/chat/telepathy-gabble/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.16 2013/03/02 18:19:10 joerg Exp $ +$NetBSD: distinfo,v 1.17 2014/03/06 15:43:23 joerg Exp $ SHA1 (telepathy-gabble-0.11.10.tar.gz) = 26ca4e8a98b01b78007f88caea56b08ae5070fdd RMD160 (telepathy-gabble-0.11.10.tar.gz) = b4906a01b8cc6e6630e1707e97250bcdefeac9c4 @@ -6,7 +6,7 @@ Size (telepathy-gabble-0.11.10.tar.gz) = 3443486 bytes SHA1 (patch-lib_ext_wocky_examples_connect.c) = 4f22cadb5e39f68630c3d09671aaef4e6a480394 SHA1 (patch-lib_ext_wocky_tests_test-resolver_h) = 4fc2950543c9ea9b902c1608082e60c644659a91 SHA1 (patch-lib_ext_wocky_tests_wocky-connector-test.c) = 9e5b06621583229b0fd05d057dce778698ea223f -SHA1 (patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c) = f53a0b3247df5a5dcf90809a9495966ff26c6c3f +SHA1 (patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c) = ae1d8dcbc4c875696921cbb8c44e2d6841c47f8f SHA1 (patch-lib_ext_wocky_wocky_wocky-heartbeat-source_c) = d8f0192f7f34e6fb98150283f5ff05de6313ee4a SHA1 (patch-lib_ext_wocky_wocky_wocky-muc.c) = 769dae27f20fd7e1c196d65a4753ccf65a77926b SHA1 (patch-lib_ext_wocky_wocky_wocky-openssl.c) = 21dd4df0c50e766bab0d3d1cbaa9fbe2feef7a17 diff --git a/chat/telepathy-gabble/patches/patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c b/chat/telepathy-gabble/patches/patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c index 6960d4653b6..ff5521441db 100644 --- a/chat/telepathy-gabble/patches/patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c +++ b/chat/telepathy-gabble/patches/patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c @@ -1,7 +1,16 @@ -$NetBSD: patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c,v 1.1 2011/11/27 19:35:28 joerg Exp $ +$NetBSD: patch-lib_ext_wocky_tests_wocky-test-sasl-auth-server.c,v 1.2 2014/03/06 15:43:23 joerg Exp $ ---- lib/ext/wocky/tests/wocky-test-sasl-auth-server.c.orig 2011-11-27 01:52:00.000000000 +0000 +--- lib/ext/wocky/tests/wocky-test-sasl-auth-server.c.orig 2010-10-20 14:56:06.000000000 +0000 +++ lib/ext/wocky/tests/wocky-test-sasl-auth-server.c +@@ -154,7 +154,7 @@ test_sasl_auth_server_dispose (GObject * + priv->stream = NULL; + + #ifdef HAVE_LIBSASL2 +- if (&priv->sasl_conn != NULL) ++ if (priv->sasl_conn != NULL) + sasl_dispose (&priv->sasl_conn); + priv->sasl_conn = NULL; + #endif @@ -929,8 +929,8 @@ test_sasl_auth_server_new (GIOStream *st static gboolean sasl_initialized = FALSE; int ret; |