Merge branch 'obsd-master'

This commit is contained in:
Thomas Adam
2026-02-27 12:01:08 +00:00
9 changed files with 39 additions and 0 deletions

1
file.c
View File

@@ -55,6 +55,7 @@ file_get_path(struct client *c, const char *file)
if (*path == '/')
return (path);
xasprintf(&full_path, "%s/%s", server_client_get_cwd(c, NULL), path);
free(path);
return (full_path);
}