diff -c2 vserver-0.20/Makefile vserver-0.20.new/Makefile *** vserver-0.20/Makefile Mon Sep 9 22:55:20 2002 --- vserver-0.20.new/Makefile Sat Oct 12 13:20:02 2002 *************** *** 3,7 **** PROGS=chbind chcontext reducecap rebootmgr vreboot readlink vunify vbuild \ vserver-stat showattr vdu showperm capchroot vfiles ifspec filetime listdevip ! GCCOPTS=-funsigned-char -Wall -g -O3 all: $(PROGS) --- 3,7 ---- PROGS=chbind chcontext reducecap rebootmgr vreboot readlink vunify vbuild \ vserver-stat showattr vdu showperm capchroot vfiles ifspec filetime listdevip ! GCCOPTS=-funsigned-char -Wall -g -O all: $(PROGS) diff -c2 vserver-0.20/vdu.cc vserver-0.20.new/vdu.cc *** vserver-0.20/vdu.cc Sun Jan 13 21:41:42 2002 --- vserver-0.20.new/vdu.cc Sat Oct 12 13:04:55 2002 *************** *** 8,11 **** --- 8,13 ---- #include + using namespace std; + static int vdu_onedir (const string &path, long long &size) { diff -c2 vserver-0.20/vunify.cc vserver-0.20.new/vunify.cc *** vserver-0.20/vunify.cc Sat Aug 10 04:28:36 2002 --- vserver-0.20.new/vunify.cc Sat Oct 12 13:02:04 2002 *************** *** 165,169 **** printer (const char *_title): title(_title){} bool operator()(T a){ ! cout << title << " " << a << endl; } }; --- 165,169 ---- printer (const char *_title): title(_title){} bool operator()(T a){ ! return cout << title << " " << a << endl; } }; diff -c2 vserver-0.20/vutil.h vserver-0.20.new/vutil.h *** vserver-0.20/vutil.h Sat Aug 10 04:27:03 2002 --- vserver-0.20.new/vutil.h Sat Oct 12 12:44:05 2002 *************** *** 12,15 **** --- 12,17 ---- #include + using namespace std; + extern int debug; extern bool testmode;