aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/server_main.c
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2023-04-29 22:14:41 +0200
committerEgor Tensin <Egor.Tensin@gmail.com>2023-04-29 22:16:42 +0200
commitb58e8bfe04f4f8bcbb18dd6cb7c01f4d44b1f9ec (patch)
tree4c7afa46057e73d111e3ef9004a95205f66b0179 /src/server_main.c
parentdedupe command line routines (diff)
downloadcimple-b58e8bfe04f4f8bcbb18dd6cb7c01f4d44b1f9ec.tar.gz
cimple-b58e8bfe04f4f8bcbb18dd6cb7c01f4d44b1f9ec.zip
cmd_line: read executable name from /proc/self/exe
Diffstat (limited to 'src/server_main.c')
-rw-r--r--src/server_main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server_main.c b/src/server_main.c
index 02304b2..cdd73b3 100644
--- a/src/server_main.c
+++ b/src/server_main.c
@@ -39,7 +39,7 @@ static int parse_settings(struct settings *settings, int argc, char *argv[])
while ((opt = getopt_long(argc, argv, "hVp:s:", long_options, &longind)) != -1) {
switch (opt) {
case 'h':
- exit_with_usage(0, argv[0]);
+ exit_with_usage(0);
break;
case 'V':
exit_with_version();
@@ -51,13 +51,13 @@ static int parse_settings(struct settings *settings, int argc, char *argv[])
settings->sqlite_path = optarg;
break;
default:
- exit_with_usage(1, argv[0]);
+ exit_with_usage(1);
break;
}
}
if (!settings->sqlite_path) {
- exit_with_usage_err(argv[0], "must specify the path to a SQLite database");
+ exit_with_usage_err("must specify the path to a SQLite database");
return -1;
}