aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/os_unix.c
diff options
context:
space:
mode:
authorStefan Hoffmann <stefan991@gmail.com>2014-08-27 19:14:44 +0200
committerStefan Hoffmann <stefan991@gmail.com>2014-08-31 15:37:55 +0200
commit5d074a0aa6b307a11ee572db6bf48ca17c3a8a23 (patch)
tree3dd3a2b9e8e229d772bf25286f238d92aba7ca16 /src/nvim/os_unix.c
parent9ee1c3604c0cc8a3ec1bac32fb33e9c0d0887155 (diff)
downloadrneovim-5d074a0aa6b307a11ee572db6bf48ca17c3a8a23.tar.gz
rneovim-5d074a0aa6b307a11ee572db6bf48ca17c3a8a23.tar.bz2
rneovim-5d074a0aa6b307a11ee572db6bf48ca17c3a8a23.zip
fileinfo: rename os_get_file_info{,_link,_fd}
Diffstat (limited to 'src/nvim/os_unix.c')
-rw-r--r--src/nvim/os_unix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/os_unix.c b/src/nvim/os_unix.c
index 33b08d7df6..e6a1ecb796 100644
--- a/src/nvim/os_unix.c
+++ b/src/nvim/os_unix.c
@@ -328,7 +328,7 @@ int len /* buffer size, only used when name gets longer */
struct dirent *dp;
FileInfo file_info;
- if (os_get_file_info_link((char *)name, &file_info)) {
+ if (os_fileinfo_link((char *)name, &file_info)) {
/* Open the directory where the file is located. */
slash = vim_strrchr(name, '/');
if (slash == NULL) {
@@ -354,7 +354,7 @@ int len /* buffer size, only used when name gets longer */
STRLCPY(newname + (tail - name), dp->d_name,
MAXPATHL - (tail - name) + 1);
FileInfo file_info_new;
- if (os_get_file_info_link((char *)newname, &file_info_new)
+ if (os_fileinfo_link((char *)newname, &file_info_new)
&& os_file_info_id_equal(&file_info, &file_info_new)) {
STRCPY(tail, dp->d_name);
break;