Bug#611791: libmms0: libmms alignment problems on ARM

2011-02-02 Thread Danny Baumann
Package: libmms0
Version: 0.6-1
Severity: important
Tags: upstream

libmms 0.6 has some alignment issues on ARM. This causes any
mms_connect() to fail on those platforms due to GUID compare mismatches.
See
http://sourceforge.net/tracker/?func=detailaid=3137994group_id=101989atid=630607
for the upstream bug report.
As this is fixed in later upstream releases, please update the libmms
package to version 0.6.1 or 0.6.2.

Thanks,

Danny

-- System Information:
Debian Release: 6.0
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.37 (PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages libmms0 depends on:
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.5-8  GCC support library
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines

libmms0 recommends no packages.

libmms0 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#611791: libmms0: libmms alignment problems on ARM

2011-02-02 Thread Danny Baumann

Hi,


libmms 0.6 has some alignment issues on ARM. This causes any
mms_connect() to fail on those platforms due to GUID compare mismatches.
See
http://sourceforge.net/tracker/?func=detailaid=3137994group_id=101989atid=630607

for the upstream bug report.
As this is fixed in later upstream releases, please update the libmms
package to version 0.6.1 or 0.6.2.


libmms 0.6.2 is already prepared in our git repository, but is scheduled
for post-squeeze.


Please excuse my lack of understanding, but given that only maintenance 
and bugfixing work seems to be done in upstream libmms, and given that 
the alignment bug makes it impossible to properly use libmms on ARM, why 
are the newer releases not considered for squeeze?


If updating libmms is not an option, could you consider backporting the 
alignment fix? 
(http://libmms.git.sourceforge.net/git/gitweb.cgi?p=libmms/libmms;a=commit;h=160a0c1c29b2be301a409856c4393dc9c1b88dd0)


Thanks,

Danny



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#573258: Acknowledgement (xrdp does not reuse existing connections)

2010-03-10 Thread Danny Baumann
Hi,

I think I found the bug. When comparing the type of the new session to
previous ones, different enum namespaces are used:

- The type parameter of session_get_bydata is a SCP_SESSION_TYPE enum
value
- The type item of a single session list item is a SESMAN_SESSION_TYPE
enum value (filled via calls to session_start)

Attached is a patch for that bug which solves the problem for me. Might
also be worth sending upstream, but the upstream bug tracker seems
abandoned.

Regards,

Danny
Index: sesman/session.c
===
RCS file: /cvsroot/xrdp/xrdp/sesman/session.c,v
retrieving revision 1.38
diff -u -r1.38 session.c
--- sesman/session.c	26 Dec 2009 23:02:56 -	1.38
+++ sesman/session.c	10 Mar 2010 10:22:05 -
@@ -55,6 +55,19 @@
 {
   struct session_chain* tmp;
 
+  /* convert from SCP_SESSION_TYPE namespace to SESMAN_SESSION_TYPE namespace */
+  switch (type)
+  {
+case SCP_SESSION_TYPE_XVNC:
+  type = SESMAN_SESSION_TYPE_XVNC;
+  break;
+case SCP_SESSION_TYPE_XRDP:
+  type = SESMAN_SESSION_TYPE_XRDP;
+  break;
+default:
+  return 0;
+  }
+
   /*THREAD-FIX require chain lock */
   lock_chain_acquire();
 


Bug#573258: xrdp does not reuse existing connections

2010-03-09 Thread Danny Baumann
Package: xrdp
Version: 0.5.0~20100303cvs-1
Severity: important

When opening a session with some given parameters (output size, color depth, 
user name), disconnecting from that session and reconnecting later on with 
exactly the same parameters, the existing session is not reused. A new session 
is opened instead. As far as I can tell, there is no way to access the old 
session which is still open in the background.
Running ps e.g. shows the following:

plug:~# ps ax | grep X
12832 pts/0S  0:00 Xvnc :10 -geometry 1280x800 -depth 24 -rfbauth 
/home/daba/.vnc/sesman_daba_passwd -bs -ac -nolisten tcp
12880 pts/0S  0:02 Xvnc :11 -geometry 1280x800 -depth 24 -rfbauth 
/home/daba/.vnc/sesman_daba_passwd -bs -ac -nolisten tcp
12963 pts/1S+ 0:00 grep X

There is some discussion on the xrdp forum about that:
http://sourceforge.net/projects/xrdp/forums/forum/389417/topic/3513019

From the hack posted there, the problem seems to be introduced in the latest 
release:
http://xrdp.cvs.sourceforge.net/viewvc/xrdp/xrdp/sesman/session.c?r1=1.35r2=1.36

Thanks,

Danny

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.32.9 (PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xrdp depends on:
ii  adduser   3.112  add and remove users and groups
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libpam0g  1.1.1-2Pluggable Authentication Modules l
ii  libssl0.9.8   0.9.8m-2   SSL shared libraries
ii  libx11-6  2:1.3.3-1  X11 client-side library
ii  libxfixes31:4.0.4-1  X11 miscellaneous 'fixes' extensio

Versions of packages xrdp recommends:
ii  tightvncserver [vnc-server]   1.3.9-6virtual network computing server s

xrdp suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#572764: closed by Vincent Bernat ber...@debian.org (Bug#572764: fixed in xrdp 0.5.0~20100303cvs-1)

2010-03-08 Thread Danny Baumann
Hi,

 This is an automatic notification regarding your Bug report
 which was filed against the xrdp package:
 
 #572764: Windows 7 RDP client can not connect to xrdp server
 
 It has been closed by Vincent Bernat ber...@debian.org.

Thanks for the upload! Will the armel port also be updated, or is that just a 
matter of waiting for the build to appear?

Thanks,

Danny



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#572764: Windows 7 RDP client can not connect to xrdp server

2010-03-06 Thread Danny Baumann
Package: xrdp
Version: 0.4.1~dfsg-2
Severity: important

When trying to connect from the remote terminal client shipped with Windows 7 
to an xrdp server, there is a protocol error right after entering the user's 
password. Afterwards, the connection is closed.

According to various sources, this problem seems fixed in xrdp 0.5.0:
- http://secondhandnoos.blogspot.com/2010/01/xrdp-050.html
- 
http://sourceforge.net/mailarchive/forum.php?thread_name=a7eb578e0910021902k773618f2y10b4c05109a8d...@mail.gmail.comforum_name=xrdp-devel

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: armel (armv5tel)

Kernel: Linux 2.6.32.9 (PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xrdp depends on:
ii  adduser   3.112  add and remove users and groups
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libpam0g  1.1.1-2Pluggable Authentication Modules l
ii  libssl0.9.8   0.9.8k-8   SSL shared libraries

Versions of packages xrdp recommends:
ii  tightvncserver [vnc-server]   1.3.9-6virtual network computing server s

xrdp suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org