From 2257c0acfd9c8f91d41e858272d289168b8eb965 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 8 Dec 2008 15:56:52 +1030 Subject: [PATCH] Fix size calc for full tarball. --- web/staticall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/staticall.php b/web/staticall.php index 122c399b..60f7fa77 100644 --- a/web/staticall.php +++ b/web/staticall.php @@ -4,7 +4,7 @@ include('logo.html'); include('menulist.html'); include('static-configuration'); -$tarballsize=round((filesize($argv[2]."/ccan.tar.bz2") + 1023) / 1024); +$tarballsize=round((filesize($argv[3]."/ccan.tar.bz2") + 1023) / 1024); ?>

List of all CCAN modules:

-- 2.39.2