From: Evan Broder Date: Sun, 30 Mar 2008 10:41:43 +0000 (-0400) Subject: One more bug - principles in the .k5login files weren't being assembled X-Git-Tag: sipb-xen-console/3.2^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-console.git/commitdiff_plain/25791aef852b9fb1da2f8ffeaeba52f81d255b50?ds=sidebyside One more bug - principles in the .k5login files weren't being assembled with an '@' between the principal and the realm svn path=/trunk/packages/sipb-xen-console/; revision=357 --- diff --git a/debian/changelog b/debian/changelog index b32fad9..933e072 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +sipb-xen-console (3.2) unstable; urgency=low + + * Fixing a bug in sipb-xen-consolefs ('@' is not re-added to realms + in the .k5login + + -- SIPB Xen Project Sun, 30 Mar 2008 06:39:30 -0400 + sipb-xen-console (3.1) unstable; urgency=low * Clean up the motd a bit diff --git a/files/usr/bin/sipb-xen-consolefs b/files/usr/bin/sipb-xen-consolefs index 380c94b..243a4cf 100755 --- a/files/usr/bin/sipb-xen-consolefs +++ b/files/usr/bin/sipb-xen-consolefs @@ -91,7 +91,7 @@ class ConsoleFS(Fuse): princ = user realm = "ATHENA.MIT.EDU" - return princ.replace('.', '/') + realm + return princ.replace('.', '/') + '@' + realm def getattr(self, path): """