diff options
author | Matt Strapp <strap012@umn.edu> | 2020-11-15 14:02:03 -0600 |
---|---|---|
committer | Matt Strapp <strap012@umn.edu> | 2020-11-15 14:02:03 -0600 |
commit | 1b96fc8f0b7f590efc9d308d015ebed763aa65c8 (patch) | |
tree | 3310b6c502b2fcc8fb3912026af47e20ee5b40c4 | |
parent | help (diff) | |
download | csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar.gz csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar.bz2 csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar.lz csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar.xz csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.tar.zst csci4061-1b96fc8f0b7f590efc9d308d015ebed763aa65c8.zip |
get rid of cache directory
-rw-r--r-- | P3/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/P3/server.c b/P3/server.c index f99094f..89d425d 100644 --- a/P3/server.c +++ b/P3/server.c @@ -176,7 +176,7 @@ int main(int argc, char **argv) { return -1; } // Initialize cache (extra credit B) - mkdir(cache, 0666); + // Start the server init(port); // Create dispatcher threads (make detachable????) |