Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
f4eabaf3
Commit
f4eabaf3
authored
Dec 22, 2018
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix ancient compiler warnings and typos in !HAVE_SYMLINK code
This has never been correct since this code was introduced.
parent
c952eae5
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/bin/initdb/initdb.c
src/bin/initdb/initdb.c
+1
-1
src/bin/pg_basebackup/pg_basebackup.c
src/bin/pg_basebackup/pg_basebackup.c
+1
-1
No files found.
src/bin/initdb/initdb.c
View file @
f4eabaf3
...
...
@@ -2942,7 +2942,7 @@ create_xlog_or_symlink(void)
exit_nicely
();
}
#else
fprintf
(
stderr
,
_
(
"%s: symlinks are not supported on this platform
"
)
);
fprintf
(
stderr
,
_
(
"%s: symlinks are not supported on this platform
\n
"
),
progname
);
exit_nicely
();
#endif
}
...
...
src/bin/pg_basebackup/pg_basebackup.c
View file @
f4eabaf3
...
...
@@ -2588,7 +2588,7 @@ main(int argc, char **argv)
disconnect_and_exit
(
1
);
}
#else
fprintf
(
stderr
,
_
(
"%s: symlinks are not supported on this platform
\n
"
));
fprintf
(
stderr
,
_
(
"%s: symlinks are not supported on this platform
\n
"
)
,
progname
);
disconnect_and_exit
(
1
);
#endif
free
(
linkloc
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment