]> Devi Nivas Git - cs3210-lab1.git/commitdiff
Update lab1.md
authorDevecsery, David <ddevec@gatech.edu>
Tue, 26 Jan 2021 18:33:05 +0000 (13:33 -0500)
committerGitHub Enterprise <github-noreply@oit.gatech.edu>
Tue, 26 Jan 2021 18:33:05 +0000 (13:33 -0500)
instructions/lab1.md

index 0262c38c0f2fad08f62c6c6b92af9cd37dce957c..fd8726e88a239e4dd2cf3e2c15ecff93b10bf0b9 100644 (file)
@@ -60,22 +60,6 @@ adds in debug symbols.  Its much easier to work with than a "Release" build, the
 default CMAKE_BUILD_TYPE.  The autograder (more later) will run your code in
 "Release" mode**
 
-**NOTE3: There is a bug in `tools/mkfs.c` of the repository (refer to @119 on
-Piazza). In order to fix, implement the changes below.**
-
-In the file `tools/mkfs.c` on line 156:
-
-```c
-strncpy(de.name, argv[i], DIRSIZ);
-```
-
-should be:
-
-```c
-strncpy(de.name, argv[i], DIRSIZ-1);
-```
-
-
 Once you've built xv6, you may launch your new kernel.  We've provided a
 convenience script to help you launch it: