96f013483bfe1e4018431f34f946ac999890ea51
kent
  Tue May 7 09:11:22 2013 -0700
Moving parallelFetch to a new module.
diff --git src/utils/paraSync/paraSync.c src/utils/paraSync/paraSync.c
index 28f4fbe..8164f4e 100644
--- src/utils/paraSync/paraSync.c
+++ src/utils/paraSync/paraSync.c
@@ -1,22 +1,23 @@
 /* paraSync - uses paraFetch to recursively mirror url to given path. */
 #include "common.h"
 #include "options.h"
 #include "dystring.h"
 #include "obscure.h"
 #include "portable.h"
 #include "net.h"
+#include "paraFetch.h"
 
 void usage()
 /* Explain usage and exit */
 {
 errAbort(
     "paraSync 1.0\n"
     "paraSync - uses paraFetch to recursively mirror url to given path\n"
     "usage:\n"
     "   paraSync {options} N R URL outPath\n"
     "   where N is the number of connections to use\n"
     "         R is the number of retries\n"
     "options:\n"
     "   -A='ext1,ext2'  means accept only files with ext1 or ext2\n" 
     "   -newer  only download a file if it is newer than the version we already have.\n"
     "   -progress  Show progress of download.\n"