TD2: Fix the remaining bugs in the IHM chat client.
[TD_SR.git] / TD2 / server / Main.java
index 68ef78e817d11a1a1f3c698e011a8bfe626af630..12aed42f8414855da82c7f64b50eda230b103b12 100644 (file)
@@ -5,7 +5,7 @@ public class Main {
        public static void main(String[] args) {
                ServerSocket listenSocket = null;
                try {
-                       System.out.println("Demarrage du serveur sur le port " + Integer.parseInt(args[0]) + ", mise en attente de connexion :");
+                       System.out.println("Demarrage du serveur sur le port " + Integer.parseInt(args[0]) + " et en attente de connexion :");
                        listenSocket = new ServerSocket(Integer.parseInt(args[0])); // port
                        while (true) { // le dispatcher est le thread qui execute main()
                                Socket clientSocket = listenSocket.accept();