summaryrefslogtreecommitdiff
path: root/testing.c
diff options
context:
space:
mode:
authorkaa <kaa@disroot.org>2023-11-25 12:40:23 -0800
committerkaa <kaa@disroot.org>2023-11-25 12:40:23 -0800
commit06b553ab3f6355e643049dad0ccb570a0bc0d613 (patch)
treeef758a08c2dea66085f11c333984f5e96d4ab444 /testing.c
parent3df21ef899aafd2461570687ef3b9b1c9f9a555e (diff)
WIP Directory traversal using go.HEADmaster
Diffstat (limited to 'testing.c')
-rw-r--r--testing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing.c b/testing.c
index f50a0a7..a557450 100644
--- a/testing.c
+++ b/testing.c
@@ -22,7 +22,7 @@ main(int argc, char **argv)
char *cmd = calloc(cmdsize, sizeof(char));
snprintf(cmd, cmdsize, "curl -X GET '%s%s' -H 'Authorization: Bearer %s'",
base, argv[1], upload_key);
- puts(cmd);
+ /*puts(cmd);*/
system(cmd);
return 0;
}