aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2022-10-31 18:29:28 +0000
committerOmar Polo <op@omarpolo.com>2022-10-31 18:29:28 +0000
commitee32ee80db55c1a51855e9e81e5a06f772a71235 (patch)
tree6264754bbcd872093120671d2a7d67384a46fe82
parentf25fa4a951951899d171e03274c6854fa318fca5 (diff)
remove -v from gg
undocumented flag to dump to stdout the request before doing it. Not useful, it's debugging leftover.
-rw-r--r--gg.12
-rw-r--r--gg.c11
2 files changed, 3 insertions, 10 deletions
diff --git a/gg.1 b/gg.1
index 23ac0bb..0278c51 100644
--- a/gg.1
+++ b/gg.1
@@ -20,7 +20,7 @@
.Sh SYNOPSIS
.Nm
.Bk -words
-.Op Fl 23Nnv
+.Op Fl 23Nn
.Op Fl C Ar cert
.Op Fl d Ar mode
.Op Fl H Ar sni
diff --git a/gg.c b/gg.c
index 8765b11..cd335b4 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 (;;) {
@@ -304,7 +300,7 @@ close:
static void __attribute__((noreturn))
usage(void)
{
- 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");
@@ -352,7 +348,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;
@@ -390,9 +386,6 @@ main(int argc, char **argv)
signal(SIGALRM, timeout);
alarm(timer);
break;
- case 'v':
- verbose++;
- break;
default:
usage();
}