projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8934594
)
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 76d2fcfd22356793b22a60bbbdafcdaf07d300d8..3143217ab0da3b63be2e6c9f7efd8aae5c79eefc 100644
(file)
--- a/
src/backend/storage/file/fd.c
+++ b/
src/backend/storage/file/fd.c
@@
-7,7
+7,7
@@
* Portions Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.6
6 2000/11/10 03:53:44
vadim Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/file/fd.c,v 1.6
7 2000/11/23 01:08:57
vadim Exp $
*
* NOTES:
*
@@
-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;
}