diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 14:36:37 +0100 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2023-03-02 14:36:37 +0100 |
commit | 2f80c95740f88e9e3e04ee0c2063e55a497315b4 (patch) | |
tree | f8071f236164f76ab088df712e3278231849319f /src/backend/main/main.c | |
parent | 7ab1bc2939f32aa995bdb81eaac3bb28f908e980 (diff) |
Mark options as deprecated in usage output
Some deprecated options were not marked as such in usage output. This
does so across the installed binaries in an attempt to provide consistent
markup for this.
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/062C6A8A-A4E8-4F52-9E31-45F0C9E9915E@yesql.se
Diffstat (limited to 'src/backend/main/main.c')
-rw-r--r-- | src/backend/main/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c index 96347eca1a3..43978fd359c 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -339,7 +339,7 @@ help(const char *progname) printf(_(" -e use European date input format (DMY)\n")); printf(_(" -F turn fsync off\n")); printf(_(" -h HOSTNAME host name or IP address to listen on\n")); - printf(_(" -i enable TCP/IP connections\n")); + printf(_(" -i enable TCP/IP connections (deprecated)\n")); printf(_(" -k DIRECTORY Unix-domain socket location\n")); #ifdef USE_SSL printf(_(" -l enable SSL connections\n")); |