summaryrefslogtreecommitdiff
path: root/src/login_sql/login.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/login_sql/login.c')
-rw-r--r--src/login_sql/login.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/login_sql/login.c b/src/login_sql/login.c
index f387e32c1..c7c4cd9d1 100644
--- a/src/login_sql/login.c
+++ b/src/login_sql/login.c
@@ -223,23 +223,6 @@ int isGM(int account_id) {
return level;
}
-//-----------------------------------------------------
-// Function to suppress control characters in a string.
-//-----------------------------------------------------
-int remove_control_chars(unsigned char *str) {
- int i;
- int change = 0;
-
- for(i = 0; str[i]; i++) {
- if (str[i] < 32) {
- str[i] = '_';
- change = 1;
- }
- }
-
- return change;
-}
-
//---------------------------------------------------
// E-mail check: return 0 (not correct) or 1 (valid).
//---------------------------------------------------