diff options
author | bptato <nincsnevem662@gmail.com> | 2023-11-17 23:25:10 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2023-11-17 23:25:46 +0100 |
commit | 50280e1f00c605a8a5655541d350f2dc4cb76411 (patch) | |
tree | 346e04ff14c7c1c5e2a417854fb47bec67fbc787 /bonus | |
parent | d1b6a1ca3ab18fa90564dae6a303011d6c07047d (diff) | |
download | chawan-50280e1f00c605a8a5655541d350f2dc4cb76411.tar.gz |
gmifetch: do not decode URLs from query string
Diffstat (limited to 'bonus')
-rw-r--r-- | bonus/gmifetch/gmifetch.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/bonus/gmifetch/gmifetch.c b/bonus/gmifetch/gmifetch.c index 94b3b18d..1ebd5934 100644 --- a/bonus/gmifetch/gmifetch.c +++ b/bonus/gmifetch/gmifetch.c @@ -644,8 +644,6 @@ int main(int argc, const char *argv[]) input_url = getenv("QUERY_STRING"); if (!input_url) DIE("Usage: gmifetch [url] (or set QUERY_STRING)"); - decode_query(input_url, buffer); - input_url = buffer; } else { input_url = argv[1]; } |