|
From: Carlo W. <li...@us...> - 2001-12-30 02:18:33
|
CVSROOT : /cvsroot/libcw
Module : src
Branch tags: branch-threading
Commit time: 2001-11-30 02:18:33 UTC
Modified files:
Tag: branch-threading
libcwd/documentation/tutorial/Makefile
libcwd/documentation/tutorial/tut5.in
Log message:
Removed a 'touch'.
---------------------- diff included ----------------------
Index: src/libcwd/documentation/tutorial/Makefile
diff -u src/libcwd/documentation/tutorial/Makefile:1.1.2.4 src/libcwd/documentation/tutorial/Makefile:1.1.2.5
--- src/libcwd/documentation/tutorial/Makefile:1.1.2.4 Sat Dec 29 18:07:17 2001
+++ src/libcwd/documentation/tutorial/Makefile Sat Dec 29 18:18:23 2001
@@ -40,7 +40,6 @@
mv $*.tmp $*; \
else \
echo "$* wasn't changed."; \
- touch $*; \
rm $*.tmp; \
fi; \
else \
Index: src/libcwd/documentation/tutorial/tut5.in
diff -u src/libcwd/documentation/tutorial/tut5.in:1.1.2.1 src/libcwd/documentation/tutorial/tut5.in:1.1.2.2
--- src/libcwd/documentation/tutorial/tut5.in:1.1.2.1 Sat Dec 29 17:22:09 2001
+++ src/libcwd/documentation/tutorial/tut5.in Sat Dec 29 18:18:23 2001
@@ -491,8 +491,8 @@
return os;
}
-// We only use this function to show what happens with the debug output,
-// you shouldn't do anything like this in a real program.
+// We only use this function to show what happens with the debug output.
+// You shouldn't do anything like this in a real program.
int stat_with_buf_alloc(char const* file_name, struct stat*& bufp)
{
bufp = new struct stat;
----------------------- End of diff -----------------------
|