Skip to content

Commit

Permalink
trimWhitespace est maintenant appliqué sur toutes les entrées
Browse files Browse the repository at this point in the history
  • Loading branch information
abyfall committed Dec 8, 2017
1 parent 0c4f34f commit 392e7e1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions serveur/sources/service.c
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ void nouveauService(int descripteurSocketService)
recevoirMessage(descripteurSocketService, commandeRecu);
printf("Le client veut partir de : %s (taille = %d)\n", commandeRecu, sizeRead);
char* villeDepart = strdup(commandeRecu);
trimwhitespace(villeDepart);

// Envoie et reception des informations a propos de la ville d'arrivee
printf("%d "MAG"CHOIX ARRIVEE"RESET"\n", pid);
Expand All @@ -86,7 +85,6 @@ void nouveauService(int descripteurSocketService)
recevoirMessage(descripteurSocketService, commandeRecu);
printf("Le client veut aller a : %s (taille = %d)\n", commandeRecu, sizeRead);
char* villeArrivee = strdup(commandeRecu);
trimwhitespace(villeArrivee);

// Envoie et reception des informations a propos de l'horaire
printf("%d "MAG"CHOIX HORAIRE"RESET"\n", pid);
Expand Down Expand Up @@ -287,6 +285,7 @@ void recevoirMessage(int descripteurSocketService, char *commandeRecu)
fprintf(stderr, RED"Erreur lecture socket!\n"RESET);
exit(-1);
}
trimwhitespace(commandeRecu);
printf("Commande reçu du client : %s (taille = %d)\n", commandeRecu, sizeRead);
}

Expand Down

0 comments on commit 392e7e1

Please sign in to comment.