9
0
Fork 0

Description: Fix some typos in the man pages and in the binary

This commit is contained in:
Ruben Undheim 2016-05-24 23:31:47 +02:00 committed by Holger Hans Peter Freyther
parent 6bf2f05df6
commit cc077ae0bc
3 changed files with 6 additions and 6 deletions

View File

@ -189,7 +189,7 @@ name resolution.
.TP
.BI --timelimit " seconds"
Exit
.b ggsn
.B ggsn
after \fIseconds\fP. Used for debugging.

View File

@ -329,7 +329,7 @@ indicates infinite.
.TP
.BI --pingquiet
Do not print information for each packet received (default = off). Is
quite usefull for high pingrates.
quite useful for high pingrates.
.SH FILES

View File

@ -592,7 +592,7 @@ int process_options(int argc, char **argv)
mcc = userloc_el[1];
printf("->mcc : %s\n", mcc);
if (strlen(mcc) != 3) {
printf("Invalid MCC lenght\n");
printf("Invalid MCC length\n");
return -1;
}
@ -611,7 +611,7 @@ int process_options(int argc, char **argv)
a = (uint8_t) (mcc[2] - 48);
if ((strlen(mnc) > 3) || (strlen(mnc) < 2)) {
printf("Invalid MNC lenght\n");
printf("Invalid MNC length\n");
return -1;
}
if (strlen(mnc) == 2) {
@ -676,7 +676,7 @@ int process_options(int argc, char **argv)
mcc = rai_el[0];
printf("->mcc : %s\n", mcc);
if (strlen(mcc) != 3) {
printf("Invalid MCC lenght\n");
printf("Invalid MCC length\n");
return -1;
}
@ -692,7 +692,7 @@ int process_options(int argc, char **argv)
a = (uint8_t) (mcc[2] - 48);
if ((strlen(mnc) > 3) || (strlen(mnc) < 2)) {
printf("Invalid MNC lenght\n");
printf("Invalid MNC length\n");
return -1;
}
if (strlen(mnc) == 2) {