cleanup: remove unnecessary (=invisible) leading spaces

This commit is contained in:
marschap
2006-04-27 15:10:59 +00:00
parent 9b111eeac4
commit d4a3e7444d
40 changed files with 212 additions and 212 deletions
+2 -2
View File
@@ -114,7 +114,7 @@ static int parse_message (const char *str, Client *c)
const char escape_chars[] = "nrt";
const char escape_trans[] = "\n\r\t";
char *p = strchr( escape_chars, str[pos] );
/* Is it wise to have the characters \n, \r & \t expanded ?
* Can the displays deal with them ?
*/
@@ -188,7 +188,7 @@ static int parse_message (const char *str, Client *c)
sock_printf_error(c->sock, "Invalid command \"%.40s\"\n", argv[0]);
report( RPT_WARNING, "Invalid command from client on socket %d: %.40s", c->sock, str );
}
free( arg_space );
return 0;
}