[ros-diffs] [pschweitzer] 35088: Fixed ident

pschweitzer at svn.reactos.org pschweitzer at svn.reactos.org
Sun Aug 3 22:06:41 CEST 2008


Author: pschweitzer
Date: Sun Aug  3 15:06:40 2008
New Revision: 35088

URL: http://svn.reactos.org/svn/reactos?rev=35088&view=rev
Log:
Fixed ident

Modified:
    trunk/irc/TechBot/TechBot.IRCLibrary/IRC.cs
    trunk/irc/TechBot/TechBot.IRCLibrary/IrcClient.cs

Modified: trunk/irc/TechBot/TechBot.IRCLibrary/IRC.cs
URL: http://svn.reactos.org/svn/reactos/trunk/irc/TechBot/TechBot.IRCLibrary/IRC.cs?rev=35088&r1=35087&r2=35088&view=diff
==============================================================================
--- trunk/irc/TechBot/TechBot.IRCLibrary/IRC.cs [iso-8859-1] (original)
+++ trunk/irc/TechBot/TechBot.IRCLibrary/IRC.cs [iso-8859-1] Sun Aug  3 15:06:40 2008
@@ -17,7 +17,7 @@
 		public const string PRIVMSG = "PRIVMSG";
 		public const string USER = "USER";
 		public const string PASS = "PASS";
-        public const string GHOST = "NS GHOST";
+		public const string GHOST = "NS GHOST";
 
 		public const string RPL_NAMREPLY = "353";
 		public const string RPL_ENDOFNAMES = "366";

Modified: trunk/irc/TechBot/TechBot.IRCLibrary/IrcClient.cs
URL: http://svn.reactos.org/svn/reactos/trunk/irc/TechBot/TechBot.IRCLibrary/IrcClient.cs?rev=35088&r1=35087&r2=35088&view=diff
==============================================================================
--- trunk/irc/TechBot/TechBot.IRCLibrary/IrcClient.cs [iso-8859-1] (original)
+++ trunk/irc/TechBot/TechBot.IRCLibrary/IrcClient.cs [iso-8859-1] Sun Aug  3 15:06:40 2008
@@ -639,8 +639,8 @@
 			if (password != null)
 				SubmitPassword(password);
 			ChangeNick(nickname);
-            /* Before we send our nickname, just ghost it */
-            SendMessage(new IrcMessage(IRC.GHOST, nickname));
+			/* Before we send our nickname, just ghost it */
+			SendMessage(new IrcMessage(IRC.GHOST, nickname));
 			/* OLD: USER <username> <hostname> <servername> <realname> */
 			/* NEW: USER <user> <mode> <unused> <realname> */
 			SendMessage(new IrcMessage(IRC.USER, String.Format("{0} 0 * :{1}",



More information about the Ros-diffs mailing list