aboutsummaryrefslogtreecommitdiff
path: root/gg.c
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2022-10-30 08:26:22 +0000
committerOmar Polo <op@omarpolo.com>2022-10-30 08:26:22 +0000
commit21cf735f37d3b5792112e02b58735d69ce18998b (patch)
tree97e3bd3f227877844860084325d4c089c0376e38 /gg.c
parente59b7f30e700d6480728b306da8fc8337e7d9503 (diff)
remove -v from gg
undocumented flag to dump to stdout the request before doing it. Not useful, it's debugging leftover.
Diffstat (limited to 'gg.c')
-rw-r--r--gg.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/gg.c b/gg.c
index da76e1d..35ccc29 100644
--- a/gg.c
+++ b/gg.c
@@ -39,7 +39,6 @@ int flag3;
int nop;
int redirects = 5;
int timer;
-int verbose;
const char *cert;
const char *key;
const char *proxy_host;
@@ -231,9 +230,6 @@ get(const char *r)
}
}
- if (verbose)
- printf("%s", req);
-
doreq(ctx, req);
for (;;) {
@@ -305,7 +301,7 @@ static void __attribute__((noreturn))
usage(void)
{
fprintf(stderr, "version: " GG_STRING "\n");
- fprintf(stderr, "usage: %s [-23Nnv] [-C cert] [-d mode] [-H sni] "
+ fprintf(stderr, "usage: %s [-23Nn] [-C cert] [-d mode] [-H sni] "
"[-K key] [-P host[:port]]\n",
getprogname());
fprintf(stderr, " [-T seconds] gemini://...\n");
@@ -353,7 +349,7 @@ main(int argc, char **argv)
int ch, code;
const char *errstr;
- while ((ch = getopt(argc, argv, "23C:d:H:K:NP:T:v")) != -1) {
+ while ((ch = getopt(argc, argv, "23C:d:H:K:NP:T:")) != -1) {
switch (ch) {
case '2':
flag2 = 1;
@@ -391,9 +387,6 @@ main(int argc, char **argv)
signal(SIGALRM, timeout);
alarm(timer);
break;
- case 'v':
- verbose++;
- break;
default:
usage();
}