Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
typos
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 2 Nov 2011 00:36:43 +0000 (01:36 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 2 Nov 2011 00:36:43 +0000 (01:36 +0100)
src/surf/surf_private.h
src/surf/surf_routing.c

index c935e72..806c3fd 100644 (file)
@@ -138,7 +138,7 @@ typedef struct s_route_extended {
 
 /* This enum used in the routing structure helps knowing in which situation we are. */
 typedef enum {
-  SURF_ROUTING_NULL = 0,   /**< Indefined type                                   */
+  SURF_ROUTING_NULL = 0,   /**< Undefined type                                   */
   SURF_ROUTING_BASE,       /**< Base case: use simple link lists for routing     */
   SURF_ROUTING_RECURSIVE   /**< Recursive case: also return gateway informations */
 } e_surf_routing_hierarchy_t;
index ad6e304..583028e 100644 (file)
@@ -501,7 +501,7 @@ void routing_AS_end(const char *AS_id)
 {
 
   if (current_routing == NULL) {
-    THROWF(arg_error, 0, "Close AS(%s), that never open", AS_id);
+    THROWF(arg_error, 0, "Close AS(%s), that were never opened", AS_id);
   } else {
     network_element_info_t info = NULL;
     xbt_assert(!xbt_lib_get_or_null(as_router_lib,current_routing->name, ROUTING_ASR_LEVEL),