diff -cr /tmp/tct-1.15/CHANGES ./CHANGES *** /tmp/tct-1.15/CHANGES Fri Jan 9 17:05:14 2004 --- ./CHANGES Sat Mar 18 00:26:53 2006 *************** *** 1,3 **** --- 1,8 ---- + Fri Mar 17 09:25:57 EST 2006 + + o Bit-rot: update #include statements because code either + no longer compiled or compiled with warnings. + Tue Jan 6 12:25:32 EST 2004 o Workaround: mactime treated "," as a special character in diff -cr /tmp/tct-1.15/man/man1/timeout.1 ./man/man1/timeout.1 *** /tmp/tct-1.15/man/man1/timeout.1 Tue Sep 11 07:52:14 2001 --- ./man/man1/timeout.1 Tue Oct 19 00:59:46 2004 *************** *** 30,37 **** .fi The command exit status is the exit status of the command (status 1 in case of a usage error). .SH AUTHOR(S) .na .nf Wietse Venema - This program is part of SATAN. --- 30,45 ---- .fi The command exit status is the exit status of the command (status 1 in case of a usage error). + .SH LICENSE + .na + .nf + The IBM PUBLIC LICENSE must be distributed with this + software. + .SH HISTORY + .na + .nf + This program was first released as part of SATAN. .SH AUTHOR(S) .na .nf Wietse Venema diff -cr /tmp/tct-1.15/src/fstools/ext2fs.c ./src/fstools/ext2fs.c *** /tmp/tct-1.15/src/fstools/ext2fs.c Wed Jan 7 03:25:22 2004 --- ./src/fstools/ext2fs.c Sat Mar 18 00:33:03 2006 *************** *** 196,202 **** fs_inode->size = dino->i_size; #ifdef i_size_high if (dino->i_size_high) ! fs_inode->size |= (dino->i_size_high << 32); #endif fs_inode->uid = dino->i_uid; fs_inode->gid = dino->i_gid; --- 196,202 ---- fs_inode->size = dino->i_size; #ifdef i_size_high if (dino->i_size_high) ! fs_inode->size |= (((OFF_T) dino->i_size_high) << 32); #endif fs_inode->uid = dino->i_uid; fs_inode->gid = dino->i_gid; *************** *** 471,478 **** /* * Other initialization: caches, callbacks. */ ! ext2fs->inode_map = mymalloc(ext2fs->fs_info.block_size); ! ext2fs->block_map = mymalloc(ext2fs->fs_info.block_size); ext2fs->fs_info.seek_pos = -1; ext2fs->grpnum = -1; ext2fs->bmap_num = -1; --- 471,478 ---- /* * Other initialization: caches, callbacks. */ ! ext2fs->inode_map = (UCHAR *) mymalloc(ext2fs->fs_info.block_size); ! ext2fs->block_map = (UCHAR *) mymalloc(ext2fs->fs_info.block_size); ext2fs->fs_info.seek_pos = -1; ext2fs->grpnum = -1; ext2fs->bmap_num = -1; diff -cr /tmp/tct-1.15/src/fstools/mylseek.c ./src/fstools/mylseek.c *** /tmp/tct-1.15/src/fstools/mylseek.c Mon Jul 31 09:39:20 2000 --- ./src/fstools/mylseek.c Sat Mar 18 00:24:16 2006 *************** *** 22,29 **** #include "fs_tools.h" #ifdef USE_MYLSEEK #ifdef HAVE_LLSEEK ! #include ! #include /* * This is LINUX, live on the bleeding edge and watch your software break --- 22,29 ---- #include "fs_tools.h" #ifdef USE_MYLSEEK #ifdef HAVE_LLSEEK ! #include ! #include /* * This is LINUX, live on the bleeding edge and watch your software break diff -cr /tmp/tct-1.15/src/misc/timeout.c ./src/misc/timeout.c *** /tmp/tct-1.15/src/misc/timeout.c Mon Sep 10 07:46:10 2001 --- ./src/misc/timeout.c Tue Oct 19 00:59:31 2004 *************** *** 22,30 **** /* DIAGNOSTICS /* The command exit status is the exit status of the command /* (status 1 in case of a usage error). /* AUTHOR(S) /* Wietse Venema - /* This program is part of SATAN. /*--*/ /* System libraries. */ --- 22,34 ---- /* DIAGNOSTICS /* The command exit status is the exit status of the command /* (status 1 in case of a usage error). + /* LICENSE + /* The IBM PUBLIC LICENSE must be distributed with this + /* software. + /* HISTORY + /* This program was first released as part of SATAN. /* AUTHOR(S) /* Wietse Venema /*--*/ /* System libraries. */ diff -cr /tmp/tct-1.15/src/pcat/pcat.c ./src/pcat/pcat.c *** /tmp/tct-1.15/src/pcat/pcat.c Wed Oct 15 06:21:54 2003 --- ./src/pcat/pcat.c Sat Mar 18 00:25:43 2006 *************** *** 79,84 **** --- 79,85 ---- #include #include #include + #include /* * Solaris 2.x has /proc, which immensely simplifies our task. However, the