~ubuntu-branches/ubuntu/lucid/ebox-openvpn/lucid

« back to all changes in this revision

Viewing changes to src/EBox/OpenVPN/Client/ValidateCertificate.pm

  • Committer: Bazaar Package Importer
  • Author(s): Javier Uruen Val, Javier Uruen Val
  • Date: 2010-02-07 18:51:11 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20100207185111-jo3dsibp35f0xr6u
Tags: 1.5-0ubuntu1
 [Javier Uruen Val]
 * New upstream release (LP: #521808)
 * debian/control
   - Bump eBox dependency
   - Update description
   - Bump Standards-version to 3.8.4. No changes required.
 * debian/copyright: updated emails and dates.
 * debian/ebox-openvpn.postinst
   - Do not run migration scripts as upstream dropped them for 1.4
 * Drop debian/patches as upstream already ships them
 * debian/rules: Drop simple-patchsys

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
  my $verifyOk = _opensslVerify($verifyParams);
110
110
  unless ($verifyOk) {
111
111
    throw EBox::Exceptions::External(
112
 
       __(q{File supplied as client's certficate doesn't match with file supplied as CA's certificate})
 
112
       __(q{File supplied as client's certificate doesn't match with file supplied as CA's certificate})
113
113
                                    );
114
114
  }
115
115
}
138
138
  }
139
139
  otherwise {
140
140
    throw EBox::Exceptions::External(
141
 
                                     __(q{File supplied as client's certficate doesn't match with file supplied as certificate's private key})
 
141
                                     __(q{File supplied as client's certificate doesn't match with file supplied as certificate's private key})
142
142
                                    );
143
143
  };
144
144
}