diff options
author | Bram Moolenaar <Bram@vim.org> | 2018-05-12 17:04:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2018-05-12 17:04:12 +0200 |
commit | 8c3169c58eef3e04f643fe9e045a97b81429e0cb (patch) | |
tree | 0a7598c9711a60f8c0aa6aa896772596796a30db /src/memline.c | |
parent | 3f1a53c4349a309c3f4acf358d3cf18f9c455050 (diff) | |
download | vim-git-8c3169c58eef3e04f643fe9e045a97b81429e0cb.tar.gz |
patch 8.0.1819: swap file warning for file with non-existing directoryv8.0.1819
Problem: Swap file warning for a file in a non-existing directory, if there
is another with the same file name. (Juergen Weigert)
Solution: When expanding the file name fails compare the file names.
Diffstat (limited to 'src/memline.c')
-rw-r--r-- | src/memline.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/memline.c b/src/memline.c index 4be1036f0..7d6cefaa0 100644 --- a/src/memline.c +++ b/src/memline.c @@ -4648,8 +4648,8 @@ b0_magic_wrong(ZERO_BL *b0p) * == 0 == 0 OK FAIL TRUE * * current file doesn't exist, inode for swap unknown, both file names not - * available -> probably same file - * == 0 == 0 FAIL FAIL FALSE + * available -> compare file names + * == 0 == 0 FAIL FAIL fname_c != fname_s * * Note that when the ino_t is 64 bits, only the last 32 will be used. This * can't be changed without making the block 0 incompatible with 32 bit @@ -4693,14 +4693,15 @@ fnamecmp_ino( retval_c = vim_FullName(fname_c, buf_c, MAXPATHL, TRUE); retval_s = vim_FullName(fname_s, buf_s, MAXPATHL, TRUE); if (retval_c == OK && retval_s == OK) - return (STRCMP(buf_c, buf_s) != 0); + return STRCMP(buf_c, buf_s) != 0; /* * Can't compare inodes or file names, guess that the files are different, - * unless both appear not to exist at all. + * unless both appear not to exist at all, then compare with the file name + * in the swap file. */ if (ino_s == 0 && ino_c == 0 && retval_c == FAIL && retval_s == FAIL) - return FALSE; + return STRCMP(fname_c, fname_s) != 0; return TRUE; } #endif /* CHECK_INODE */ |