=== modified file 'Makefile' --- Makefile 2011-07-13 02:24:39 +0000 +++ Makefile 2011-07-27 17:58:27 +0000 @@ -23,7 +23,7 @@ OPTIMIZE=-Os LANGUAGE=-std=gnu99 htmldir=man -version=1.3.0 +version=1.3.1 SED=sed ## Use these settings for a traditional /usr/local install === modified file 'NEWS' --- NEWS 2011-03-08 19:41:59 +0000 +++ NEWS 2011-07-27 17:58:27 +0000 @@ -1,6 +1,11 @@ This NEWS file records noteworthy changes, very tersely. See the manual for detailed information. +Version 1.3.1 (2011-07-27) +* Client: +** Client now retries all Mandos servers periodically. +** Work around Debian bug #633582 - fixes "Permission denied" problem. + Version 1.3.0 (2011-03-08) * Server: ** Updated for Python 2.6. === modified file 'common.ent' --- common.ent 2011-03-08 19:41:59 +0000 +++ common.ent 2011-07-27 17:58:27 +0000 @@ -1,3 +1,3 @@ - + === modified file 'debian/changelog' --- debian/changelog 2011-03-08 19:41:59 +0000 +++ debian/changelog 2011-07-27 17:58:27 +0000 @@ -1,3 +1,11 @@ +mandos (1.3.1-1) unstable; urgency=low + + * New upstream release. + * Conflict with correct version of dropbear. + * New version uses argparse; depend on python (<=2.7) | python-argparse. + + -- Teddy Hogeborn Wed, 27 Jul 2011 19:47:17 +0200 + mandos (1.3.0-1) unstable; urgency=low * New upstream release. === modified file 'mandos' --- mandos 2011-06-23 22:27:15 +0000 +++ mandos 2011-07-27 17:58:27 +0000 @@ -82,7 +82,7 @@ SO_BINDTODEVICE = None -version = "1.3.0" +version = "1.3.1" #logger = logging.getLogger('mandos') logger = logging.Logger('mandos') === modified file 'mandos-ctl' --- mandos-ctl 2011-03-15 20:13:05 +0000 +++ mandos-ctl 2011-07-27 17:58:27 +0000 @@ -59,7 +59,7 @@ server_path = "/" server_interface = domain + ".Mandos" client_interface = domain + ".Mandos.Client" -version = "1.3.0" +version = "1.3.1" def timedelta_to_milliseconds(td): """Convert a datetime.timedelta object to milliseconds""" === modified file 'mandos-keygen' --- mandos-keygen 2011-03-08 19:41:59 +0000 +++ mandos-keygen 2011-07-27 17:58:27 +0000 @@ -21,7 +21,7 @@ # Contact the authors at . # -VERSION="1.3.0" +VERSION="1.3.1" KEYDIR="/etc/keys/mandos" KEYTYPE=DSA === modified file 'mandos-monitor' --- mandos-monitor 2011-07-25 18:49:17 +0000 +++ mandos-monitor 2011-07-27 17:58:27 +0000 @@ -52,7 +52,7 @@ domain = 'se.bsnet.fukt' server_interface = domain + '.Mandos' client_interface = domain + '.Mandos.Client' -version = "1.3.0" +version = "1.3.1" # Always run in monochrome mode urwid.curses_display.curses.has_colors = lambda : False === modified file 'mandos.lsm' --- mandos.lsm 2011-03-08 19:41:59 +0000 +++ mandos.lsm 2011-07-27 17:58:27 +0000 @@ -1,7 +1,7 @@ Begin4 Title: Mandos -Version: 1.3.0 -Entered-date: 2011-03-08 +Version: 1.3.1 +Entered-date: 2011-07-27 Description: The Mandos system allows computers to have encrypted root file systems and at the same time be capable of remote and/or unattended reboots. @@ -12,10 +12,10 @@ Maintained-by: teddy@fukt.bsnet.se (Teddy Hogeborn), belorn@fukt.bsnet.se (Björn Påhlsson) Primary-site: http://www.fukt.bsnet.se/mandos - 133K mandos_1.3.0.orig.tar.gz + 136K mandos_1.3.1.orig.tar.gz Alternate-site: ftp://ftp.fukt.bsnet.se/pub/mandos - 133K mandos_1.3.0.orig.tar.gz -Platforms: Requires GCC, GNU libC, Avahi, GnuPG, Python 2.5, and + 136K mandos_1.3.1.orig.tar.gz +Platforms: Requires GCC, GNU libC, Avahi, GnuPG, Python 2.6, and various other libraries. While made for Debian GNU/Linux, it is probably portable to other distributions, but not other Unixes. Copying-policy: GNU General Public License version 3.0 or later === modified file 'plugins.d/password-prompt.c' --- plugins.d/password-prompt.c 2011-07-25 18:47:45 +0000 +++ plugins.d/password-prompt.c 2011-07-27 17:58:27 +0000 @@ -214,7 +214,7 @@ if (ret == -1){ error(1, errno, "scandir"); } - free(dirent); + free(direntries); return ret > 0; }