~ubuntu-branches/ubuntu/wily/keepass2/wily-proposed

« back to all changes in this revision

Viewing changes to KeePassLib/Cryptography/PasswordGenerator/PatternBasedGenerator.cs

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2014-08-17 15:55:03 UTC
  • mfrom: (1.2.5)
  • Revision ID: package-import@ubuntu.com-20140817155503-3jcbkd107zug4clp
Tags: 2.27+dfsg-1
* New upstream release (Closes: #754575)
* remove upstream applied fix-webdav-storage-with-mono-2.11.patch
* add fix-autotype-paste.patch to fix pasting with autotype
* mention the need for the mono-mcs package to be installed for plugins to
  work in README.Debian (Closes: #749346)

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                                                pcsUsed.Add(ch);
68
68
                                        }
69
69
                                }
 
70
                                else if(ch == '^')
 
71
                                {
 
72
                                        ch = csStream.ReadChar();
 
73
                                        if(ch == char.MinValue) // ^ at the end
 
74
                                        {
 
75
                                                vGenerated.AddLast('^');
 
76
                                                break;
 
77
                                        }
 
78
 
 
79
                                        if(bInCharSetDef) pcsCustom.Remove(ch);
 
80
                                }
70
81
                                else if(ch == '[')
71
82
                                {
72
83
                                        pcsCustom.Clear();