/* Do checksum on headers.
* POSIX says that checksum is done on unsigned bytes, but
- * Sun and HP-UX fucked it up... more details in
+ * Sun and HP-UX gets it wrong... more details in
* GNU tar source. */
sum_s = sum_u = ' ' * sizeof(tar.chksum);
for (i = 0; i < 148 ; i++) {
static void chksum_and_xwrite(int fd, struct TarHeader* hp)
{
/* POSIX says that checksum is done on unsigned bytes
- * (Sun and HP-UX fucked it up... more details in
+ * (Sun and HP-UX gets it wrong... more details in
* GNU tar source) */
const unsigned char *cp;
int chksum, size;