diff options
| author | Russ Allbery <eagle@eyrie.org> | 2014-07-16 16:54:01 -0700 | 
|---|---|---|
| committer | Russ Allbery <eagle@eyrie.org> | 2014-07-16 16:54:01 -0700 | 
| commit | dd295a55a6f02e7585a9f5be9e8b434c6d14d040 (patch) | |
| tree | 439bbbdadfddc6abbb44852e5980740d4b70126a | |
| parent | 27f4e81ddb42440345e6dd01a4943cb57ee5da39 (diff) | |
| parent | f00065a90838efcc4d80c7490c46ee7c9a7bbcbf (diff) | |
Imported Upstream version 1.1upstream/1.1
| -rw-r--r-- | Makefile.in | 8 | ||||
| -rw-r--r-- | perl/lib/Wallet/Admin.pm | 3 | 
2 files changed, 6 insertions, 5 deletions
| diff --git a/Makefile.in b/Makefile.in index 0633f5e..8b55c96 100644 --- a/Makefile.in +++ b/Makefile.in @@ -104,13 +104,13 @@ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \  	$(top_srcdir)/tests/client/full-t.in \  	$(top_srcdir)/tests/client/prompt-t.in \  	$(top_srcdir)/tests/client/rekey-t.in \ +	$(top_srcdir)/portable/setenv.c \ +	$(top_srcdir)/portable/mkstemp.c \ +	$(top_srcdir)/portable/reallocarray.c \  	$(top_srcdir)/portable/snprintf.c \ -	$(top_srcdir)/portable/strlcpy.c \  	$(top_srcdir)/portable/asprintf.c \  	$(top_srcdir)/portable/strlcat.c \ -	$(top_srcdir)/portable/reallocarray.c \ -	$(top_srcdir)/portable/mkstemp.c \ -	$(top_srcdir)/portable/setenv.c $(dist_sbin_SCRIPTS) \ +	$(top_srcdir)/portable/strlcpy.c $(dist_sbin_SCRIPTS) \  	$(top_srcdir)/build-aux/depcomp $(dist_man_MANS) \  	$(dist_pkgdata_DATA) NEWS README TODO build-aux/ar-lib \  	build-aux/compile build-aux/depcomp build-aux/install-sh \ diff --git a/perl/lib/Wallet/Admin.pm b/perl/lib/Wallet/Admin.pm index 33e2a7d..d32a0c2 100644 --- a/perl/lib/Wallet/Admin.pm +++ b/perl/lib/Wallet/Admin.pm @@ -23,7 +23,7 @@ use Wallet::Schema;  # This version should be increased on any code change to this module.  Always  # use two digits for the minor version with a leading zero if necessary so  # that it will sort properly. -$VERSION = '0.07'; +$VERSION = '0.08';  # The last non-DBIx::Class version of Wallet::Schema.  If a database has no  # DBIx::Class versioning, we artificially install this version number before @@ -125,6 +125,7 @@ sub default_data {      # types default rows.      my @record = ([ qw/ty_name ty_class/ ], +               [ 'duo',        'Wallet::Object::Duo' ],                 [ 'file',       'Wallet::Object::File' ],                 [ 'keytab',     'Wallet::Object::Keytab' ],                 [ 'wa-keyring', 'Wallet::Object::WAKeyring' ]); | 
