*** VERSION 5.2.0 ***
[NeonServV5.git] / src / ClientSocket.c
index f9faf44807eaf8b7f896704409ef8dc2e529e738..2c77b080207e1eb607bda3eafbc241c8f6e672d0 100644 (file)
@@ -1,4 +1,4 @@
-/* ClientSocket.c - NeonServ v5.1
+/* ClientSocket.c - NeonServ v5.2
  * Copyright (C) 2011  Philipp Kreil (pk910)
  * 
  * This program is free software: you can redistribute it and/or modify
@@ -158,7 +158,7 @@ int connect_socket(struct ClientSocket *client) {
     char sendBuf[512];
     int len;
 
-    if(client->pass) {
+    if(client->pass && strcmp(client->pass, "")) {
         len = sprintf(sendBuf, "PASS :%s\n", client->pass);
         write_socket(client, sendBuf, len);
     }