aboutsummaryrefslogtreecommitdiff
path: root/databases/pgpool-II/files/patch-pcp_node_info.c
diff options
context:
space:
mode:
Diffstat (limited to 'databases/pgpool-II/files/patch-pcp_node_info.c')
-rw-r--r--databases/pgpool-II/files/patch-pcp_node_info.c112
1 files changed, 0 insertions, 112 deletions
diff --git a/databases/pgpool-II/files/patch-pcp_node_info.c b/databases/pgpool-II/files/patch-pcp_node_info.c
deleted file mode 100644
index ae9cb9b33f62..000000000000
--- a/databases/pgpool-II/files/patch-pcp_node_info.c
+++ /dev/null
@@ -1,112 +0,0 @@
-Index: pcp/pcp_node_info.c
-===================================================================
-RCS file: /cvsroot/pgpool/pgpool-II/pcp/pcp_node_info.c,v
-retrieving revision 1.2
-diff -u -r1.2 pcp_node_info.c
---- pcp/pcp_node_info.c 29 Jan 2008 01:56:38 -0000 1.2
-+++ pcp/pcp_node_info.c 29 Dec 2008 05:15:44 -0000
-@@ -23,6 +23,7 @@
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
-+#include <unistd.h>
-
- #include "pcp.h"
-
-@@ -39,36 +40,47 @@
- char pass[MAX_USER_PASSWD_LEN];
- int nodeID;
- BackendInfo *backend_info;
-+ int ch;
-
-- if (argc == 2 && (strcmp(argv[1], "-h") == 0) )
-- {
-- usage();
-- exit(0);
-+ while ((ch = getopt(argc, argv, "hd")) != -1) {
-+ switch (ch) {
-+ case 'd':
-+ pcp_enable_debug();
-+ break;
-+
-+ case 'h':
-+ case '?':
-+ default:
-+ usage();
-+ exit(0);
-+ }
- }
-+ argc -= optind;
-+ argv += optind;
-
-- if (argc != 7)
-+ if (argc != 6)
- {
- errorcode = INVALERR;
- pcp_errorstr(errorcode);
- myexit(errorcode);
- }
-
-- timeout = atol(argv[1]);
-+ timeout = atol(argv[0]);
- if (timeout < 0) {
- errorcode = INVALERR;
- pcp_errorstr(errorcode);
- myexit(errorcode);
- }
-
-- if (strlen(argv[2]) >= MAX_DB_HOST_NAMELEN)
-+ if (strlen(argv[1]) >= MAX_DB_HOST_NAMELEN)
- {
- errorcode = INVALERR;
- pcp_errorstr(errorcode);
- myexit(errorcode);
- }
-- strcpy(host, argv[2]);
-+ strcpy(host, argv[1]);
-
-- port = atoi(argv[3]);
-+ port = atoi(argv[2]);
- if (port <= 1024 || port > 65535)
- {
- errorcode = INVALERR;
-@@ -76,23 +88,23 @@
- myexit(errorcode);
- }
-
-- if (strlen(argv[4]) >= MAX_USER_PASSWD_LEN)
-+ if (strlen(argv[3]) >= MAX_USER_PASSWD_LEN)
- {
- errorcode = INVALERR;
- pcp_errorstr(errorcode);
- myexit(errorcode);
- }
-- strcpy(user, argv[4]);
-+ strcpy(user, argv[3]);
-
-- if (strlen(argv[5]) >= MAX_USER_PASSWD_LEN)
-+ if (strlen(argv[4]) >= MAX_USER_PASSWD_LEN)
- {
- errorcode = INVALERR;
- pcp_errorstr(errorcode);
- myexit(errorcode);
- }
-- strcpy(pass, argv[5]);
-+ strcpy(pass, argv[4]);
-
-- nodeID = atoi(argv[6]);
-+ nodeID = atoi(argv[5]);
- if (nodeID < 0 || nodeID > MAX_NUM_BACKENDS)
- {
- errorcode = INVALERR;
-@@ -132,8 +144,9 @@
- usage(void)
- {
- fprintf(stderr, "pcp_node_info - display a pgpool-II node's information\n\n");
-- fprintf(stderr, "Usage: pcp_node_info timeout hostname port# username password nodeID\n");
-+ fprintf(stderr, "Usage: pcp_node_info [-d] timeout hostname port# username password nodeID\n");
- fprintf(stderr, "Usage: pcp_node_info -h\n\n");
-+ fprintf(stderr, " -d - enable debug message (optional)\n");
- fprintf(stderr, " timeout - connection timeout value in seconds. command exits on timeout\n");
- fprintf(stderr, " hostname - pgpool-II hostname\n");
- fprintf(stderr, " port# - pgpool-II port number\n");