CLEANUP: proxy: calloc call inverted arguments

Nothing major but a human typo mistake.
diff --git a/src/proxy.c b/src/proxy.c
index 194d4bd..3939bee 100644
--- a/src/proxy.c
+++ b/src/proxy.c
@@ -414,7 +414,7 @@
 		}
 
 		/* register the capture. */
-		hdr = calloc(sizeof(struct cap_hdr), 1);
+		hdr = calloc(1, sizeof(struct cap_hdr));
 		hdr->name = NULL; /* not a header capture */
 		hdr->namelen = 0;
 		hdr->len = len;