{5} Assigned, Active Tickets by Owner (Full Description) (6 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

kuhlmann

Ticket Summary Component Milestone Type Created
Description
#8 getauto command does not work with ICQ6 clients OSCAR defect 09/30/07

Since the release of ICQ6 something might have changed with the away-messages. If I type "getauto <contact>" and <contact> uses ICQ6 I do not get the away-message. The problem does not exist with ICQ5 and prior ICQ-versions.


#56 Unable to build against GNU TLS 2.8 CLIMM fixed-in-next defect 08/05/09

Climm fails to configure when running gnutls 2.8.1. The file libgnutls-config no longer exists and it uses pkg-config instead.


#58 assert(0) on ICQ file receiving CLIMM fixed-in-next defect 11/29/09
23:01:17          nick requests file transfer 1.txt of 4533 bytes (sequence 883).
climm: util_io.c:197: UtilIOShowError: Assertion `0' failed.

Program received signal SIGABRT, Aborted.
0xb7fe2832 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
(gdb) bt
#0  0xb7fe2832 in _dl_sysinfo_int80 () from /lib/ld-linux.so.2
#1  0xb7ca53d0 in *__GI_raise (sig=6) at ../nptl/sysdeps/unix/sysv/linux/raise.c:64
#2  0xb7ca8a85 in *__GI_abort () at abort.c:88
#3  0xb7c9e4ee in *__GI___assert_fail (assertion=0x80d04a7 "0", file=0x80d03b4 "util_io.c", line=197, function=0x80d0492 "UtilIOShowError")
    at assert.c:78
#4  0x0808f8b8 in UtilIOShowError (conn=0x8180058, rc=IO_NO_PARAM) at util_io.c:197
#5  0x08070983 in TCPDispatchMain (list=0x8180058) at oscar_dc.c:260
#6  0x0805e902 in main (argc=1, argv=0xbfffef54) at climm.c:704

in attached file same situation, but with verbose output


#59 [patch] climm catch SIGSEGV. when run under gdb in xmmp+ssl account CLIMM fixed-in-next defect 11/30/09
climm> login pass
Program received signal SIGSEGV, Segmentation fault.
0x08185cfd in ?? ()
(gdb) bt
#0  0x08185cfd in ?? ()
#1  0xb7f54c42 in _select_client_cert (session=0x81802b8, data=0x814cfc8 "\3\1\2@", data_size=6) at auth_cert.c:613
#2  _gnutls_proc_cert_cert_req (session=0x81802b8, data=0x814cfc8 "\3\1\2@", data_size=6) at auth_cert.c:1385
#3  0xb7f44c0c in _gnutls_recv_server_certificate_request (session=0x81802b8) at gnutls_kx.c:445
#4  0xb7f420a8 in _gnutls_handshake_client (session=0x81802b8) at gnutls_handshake.c:2393
#5  0xb7f427d0 in gnutls_handshake (session=0x81802b8) at gnutls_handshake.c:2280
#6  0x080a4887 in io_gnutls_connecting (conn=0x8113ed0, d=0x817fe98) at io/io_gnutls.c:293
#7  0x0808f329 in io_util_read (conn=0x8113ed0, d=0x817fe98, buf=0x0, count=0) at util_io.c:82
#8  0x0808f3b8 in UtilIORead (conn=0x8113ed0, buf=0x0, count=0) at util_io.c:90
#9  0x080c12c3 in XMPPCallbackDispatch (conn=0x8113ed0) at xmpp_base.c:1204
#10 0x0805e87b in main (argc=1, argv=0xbfffef54) at climm.c:691

Looks like this is a problem in gnutls library, what use NULL pointer. This patch fix it

--- src/xmpp_base.c (revision 2837)
+++ src/xmpp_base.c (working copy)
@@ -1201,7 +1201,7 @@
 
     if (!(conn->connect & (CONNECT_OK | 4)))
     {
-        rc = UtilIORead (conn, NULL, 0);
+        rc = UtilIORead (conn, "", 0);
         rce = UtilIOShowError (conn, rc);
         switch (rce) {
             case IO_RW:

but I was find several

src/oscar_base.c:407:        rc = UtilIORead (conn, NULL, 0);
src/oscar_base.c:661:        int rc = UtilIORead (conn, NULL, 0);
src/oscar_dc.c:326:    rc = UtilIORead (peer, NULL, 0);
src/remote.c:80:    rc = UtilIORead (remo, NULL, 0);

may be this need to be fixed too?


#60 Compile error due to possible typo in src/Makefile.am CLIMM fixed-in-next defect 12/17/09

While trying to compile a freshly checked-out SVN code I trapped an error in the auto-generated Makefile - it adds bogus requirements `-L/usr/local/lib -liksemel' which make is unable to solve. The patch below solves this problem (as far as I get it, $IKS_LIBS are added to $climm_LDADD anyway).

Index: src/Makefile.am
===================================================================
--- src/Makefile.am     (revision 2837)
+++ src/Makefile.am     (working copy)
@@ -39,7 +39,7 @@
        ../iksemel-1.4/src/sax.c ../iksemel-1.4/src/sha.c \
        ../iksemel-1.4/src/stream.c ../iksemel-1.4/src/utility.c
 
-$(climm_SOURCES): @LIBOBJS@ @IKS_LIBS@
+$(climm_SOURCES): @LIBOBJS@
 
 snprintf.o: snprintf.c
 snprintf.c: snprintf.h


#55 More Swedish translations... CLIMM fixed-in-next enhancement 05/19/09

I took the liberty of improving the Swedish translation and website translation.

/ Sebastian


Note: See TracReports for help on using and creating reports.