[csmaild-cvs] csmaild/src/Imap/Commands SelectExamineCommand.cs,1.1,1.2
Brought to you by:
tamc
From: <ta...@us...> - 2003-07-27 17:27:20
|
Update of /cvsroot/csmaild/csmaild/src/Imap/Commands In directory sc8-pr-cvs1:/tmp/cvs-serv1918/src/Imap/Commands Modified Files: SelectExamineCommand.cs Log Message: Oops. Index: SelectExamineCommand.cs =================================================================== RCS file: /cvsroot/csmaild/csmaild/src/Imap/Commands/SelectExamineCommand.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SelectExamineCommand.cs 27 Jul 2003 17:26:24 -0000 1.1 --- SelectExamineCommand.cs 27 Jul 2003 17:27:17 -0000 1.2 *************** *** 12,16 **** private bool mIsSelect; // true if we're actually SELECT false if we're EXAMINE ! public SelectExamineCommand(bool isSelect, ImapServer svr) : base(svr, "SELECT", ImapCommand.AuthSelectedState, ArgumentType.AString) { mIsSelect = isSelect; --- 12,16 ---- private bool mIsSelect; // true if we're actually SELECT false if we're EXAMINE ! public SelectExamineCommand(bool isSelect, ImapServer svr) : base(svr, (isSelect ? "SELECT" : "EXAMINE") , ImapCommand.AuthSelectedState, ArgumentType.AString) { mIsSelect = isSelect; |