b5fccbcda83b95bf71be265f159991dc787b42aa
angie
  Mon Aug 19 10:03:00 2013 -0700
cartDump needs to call setUdcCacheDir() like the other CGIs; otherwise, when it opens the cart and fetches hubs, it uses the default /tmp/udcCache.
diff --git src/hg/cartDump/cartDump.c src/hg/cartDump/cartDump.c
index a201574..2fabc88 100644
--- src/hg/cartDump/cartDump.c
+++ src/hg/cartDump/cartDump.c
@@ -101,19 +101,20 @@
            COLOR_DARKBLUE,CART_DUMP_REMOVE_VAR);
     printf("</FORM>\n");
     }
 printf("<P><em>Cookies passed to</em> %s:<BR>\n%s\n</P>\n",
        cgiServerNamePort(), getenv("HTTP_COOKIE"));
 }
 
 char *excludeVars[] = { "submit", "Submit", "noDisplay", MATCH_VAR, NULL };
 
 int main(int argc, char *argv[])
 /* Process command line. */
 {
 long enteredMainTime = clock1000();
 cgiSpoof(&argc, argv);
 oldVars = hashNew(10);
+setUdcCacheDir();
 cartHtmlShell("Cart Dump", doMiddle, hUserCookie(), excludeVars, oldVars);
 cgiExitTime("cartDump", enteredMainTime);
 return 0;
 }