Browse Source

fix typo errors on binaries.

Victor 13 years ago
parent
commit
aacd6d6cc8
4 changed files with 4 additions and 4 deletions
  1. 1 1
      modules/lcr/lcr_rpc.c
  2. 1 1
      modules/pipelimit/pipelimit.c
  3. 1 1
      modules/ratelimit/ratelimit.c
  4. 1 1
      utils/sercmd/sercmd.c

+ 1 - 1
modules/lcr/lcr_rpc.c

@@ -214,7 +214,7 @@ static void dump_rules(rpc_t* rpc, void* c)
 
 
 static const char* defunct_gw_doc[2] = {
-    "Defunct gateway until speficied time (Unix timestamp).",
+    "Defunct gateway until specified time (Unix timestamp).",
     0
 };
 

+ 1 - 1
modules/pipelimit/pipelimit.c

@@ -188,7 +188,7 @@ static int get_cpuload(double * load)
 	}
 	if (fscanf(f, "cpu  %lld%lld%lld%lld%lld%lld%lld%lld",
 			&n_user, &n_nice, &n_sys, &n_idle, &n_iow, &n_irq, &n_sirq, &n_stl) < 0) {
-		  LM_ERR("could not parse load informations\n");
+		  LM_ERR("could not parse load information\n");
 		  return -1;
 	}
 	fclose(f);

+ 1 - 1
modules/ratelimit/ratelimit.c

@@ -308,7 +308,7 @@ static int get_cpuload(double * load)
 	}
 	if (fscanf(f, "cpu  %lld%lld%lld%lld%lld%lld%lld%lld",
 			&n_user, &n_nice, &n_sys, &n_idle, &n_iow, &n_irq, &n_sirq, &n_stl) < 0) {
-		  LM_ERR("could not parse load informations\n");
+		  LM_ERR("could not parse load information\n");
 		  return -1;
 	}
 	fclose(f);

+ 1 - 1
utils/sercmd/sercmd.c

@@ -2241,7 +2241,7 @@ int main(int argc, char** argv)
 	}
 	sock_id=parse_listen_id(sock_name, strlen(sock_name), sock_type);
 	if (sock_id==0){
-		fprintf(stderr, "ERROR: error parsing ser adress %s\n", sock_name);
+		fprintf(stderr, "ERROR: error parsing ser address %s\n", sock_name);
 		goto error;
 	}