aboutsummaryrefslogtreecommitdiff
path: root/cmd-source-file.c
diff options
context:
space:
mode:
authornicm <nicm>2021-08-20 19:50:16 +0000
committernicm <nicm>2021-08-20 19:50:16 +0000
commit5f32b7d9613e9ef3f8198302379a42630323da6a (patch)
tree0a0b488496625e9da5cbc02c5a1271634568ecc3 /cmd-source-file.c
parentde94a344f61b0e4ef6459c11621be3c3d1683c9e (diff)
downloadrtmux-5f32b7d9613e9ef3f8198302379a42630323da6a.tar.gz
rtmux-5f32b7d9613e9ef3f8198302379a42630323da6a.tar.bz2
rtmux-5f32b7d9613e9ef3f8198302379a42630323da6a.zip
Hide struct args behind a couple of accessor functions.
Diffstat (limited to 'cmd-source-file.c')
-rw-r--r--cmd-source-file.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/cmd-source-file.c b/cmd-source-file.c
index 5509259f..edc66c3f 100644
--- a/cmd-source-file.c
+++ b/cmd-source-file.c
@@ -129,11 +129,11 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
struct cmd_source_file_data *cdata;
struct client *c = cmdq_get_client(item);
enum cmd_retval retval = CMD_RETURN_NORMAL;
- char *pattern, *cwd, *expand = NULL;
+ char *pattern, *cwd, *expanded = NULL;
const char *path, *error;
glob_t g;
- int i, result;
- u_int j;
+ int result;
+ u_int i, j;
cdata = xcalloc(1, sizeof *cdata);
cdata->item = item;
@@ -147,13 +147,13 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
utf8_stravis(&cwd, server_client_get_cwd(c, NULL), VIS_GLOB);
- for (i = 0; i < args->argc; i++) {
+ for (i = 0; i < args_count(args); i++) {
+ path = args_string(args, i);
if (args_has(args, 'F')) {
- free(expand);
- expand = format_single_from_target(item, args->argv[i]);
- path = expand;
- } else
- path = args->argv[i];
+ free(expanded);
+ expanded = format_single_from_target(item, path);
+ path = expanded;
+ }
if (strcmp(path, "-") == 0) {
cmd_source_file_add(cdata, "-");
continue;
@@ -180,7 +180,7 @@ cmd_source_file_exec(struct cmd *self, struct cmdq_item *item)
free(pattern);
continue;
}
- free(expand);
+ free(expanded);
free(pattern);
for (j = 0; j < g.gl_pathc; j++)