Module: kamailio
Branch: master
Commit: a268f073bc9716fefc35248687d793bdcc6d66b9
URL:
https://github.com/kamailio/kamailio/commit/a268f073bc9716fefc35248687d793b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-12-30T10:15:04+01:00
core: main - typos in log messages
---
Modified: src/main.c
---
Diff:
https://github.com/kamailio/kamailio/commit/a268f073bc9716fefc35248687d793b…
Patch:
https://github.com/kamailio/kamailio/commit/a268f073bc9716fefc35248687d793b…
---
diff --git a/src/main.c b/src/main.c
index c107f354672..fc1570c3b7a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -2193,7 +2193,7 @@ int main(int argc, char **argv)
/* safety check for upper limit of 1TB */
if(l1 <= 0 || l1 > 1024L * 1024) {
fprintf(stderr,
- "our of limits private mem size number: -M %s\n",
+ "out of limits private mem size number: -M %s\n",
optarg);
goto error;
}
@@ -2333,7 +2333,7 @@ int main(int argc, char **argv)
}
/* safety check for upper limit of 16TB */
if(l1 <= 0 || l1 > 16L * 1024 * 1024) {
- fprintf(stderr, "our of limits shmem size number: -m %s\n",
+ fprintf(stderr, "out of limits shmem size number: -m %s\n",
optarg);
goto error;
}