projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf0758b
)
Set fdstate in fileNameOpenFile.
author
Vadim B. Mikheev
<vadim4o@yahoo.com>
Thu, 23 Nov 2000 01:08:57 +0000
(
01:08
+0000)
committer
Vadim B. Mikheev
<vadim4o@yahoo.com>
Thu, 23 Nov 2000 01:08:57 +0000
(
01:08
+0000)
src/backend/storage/file/fd.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/storage/file/fd.c
b/src/backend/storage/file/fd.c
index 842f64880e6a235751434baa3a7cc902d94e83a0..5bd63080346c5ea80ebb274473ee40448dee7136 100644
(file)
--- a/
src/backend/storage/file/fd.c
+++ b/
src/backend/storage/file/fd.c
@@
-672,9
+672,9
@@
fileNameOpenFile(FileName fileName,
*/
if (fileFlags & O_CREAT)
vfdP->fdstate = FD_DIRTY;
-#else
- vfdP->fdstate = 0x0;
+ else
#endif
+ vfdP->fdstate = 0x0;
return file;
}