Commit Diff
Commit:
e89f4739041b12a3984107704ad97bcf5f0aec26
Date:
Thu Jan 27 10:37:28 2022
UTC
Message:
s/whole/all
--- gg.1
+++ gg.1
@@ -58,7 +58,7 @@ print only the response meta
print only the response header
.It meta
print only the response meta
-.It whole
+.It all
print the whole response as-is.
.El
.It Fl H Ar sni
--- gg.c
+++ gg.c
@@ -28,7 +28,7 @@ enum debug {
DEBUG_CODE,
DEBUG_HEADER,
DEBUG_META,
- DEBUG_WHOLE,
+ DEBUG_ALL,
};
/* flags */
@@ -278,7 +278,7 @@ get(const char *r)
goto close;
}
- if (debug == DEBUG_WHOLE) {
+ if (debug == DEBUG_ALL) {
write(1, buf, len);
continue;
}
@@ -322,8 +322,8 @@ parse_debug(const char *arg)
return DEBUG_HEADER;
if (!strcmp(arg, "meta"))
return DEBUG_META;
- if (!strcmp(arg, "whole"))
- return DEBUG_WHOLE;
+ if (!strcmp(arg, "all"))
+ return DEBUG_ALL;
usage();
}
Omar Polo