=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/elf2ecoff/Attic/elf2ecoff.c,v retrieving revision 1.4 retrieving revision 1.5 diff -c -r1.4 -r1.5 *** src/usr.bin/elf2ecoff/Attic/elf2ecoff.c 2003/06/10 22:20:46 1.4 --- src/usr.bin/elf2ecoff/Attic/elf2ecoff.c 2003/11/27 10:33:20 1.5 *************** *** 1,4 **** ! /* $OpenBSD: elf2ecoff.c,v 1.4 2003/06/10 22:20:46 deraadt Exp $ */ /* $NetBSD: elf2ecoff.c,v 1.8 1997/07/20 03:50:54 jonathan Exp $ */ /* --- 1,4 ---- ! /* $OpenBSD: elf2ecoff.c,v 1.5 2003/11/27 10:33:20 henning Exp $ */ /* $NetBSD: elf2ecoff.c,v 1.8 1997/07/20 03:50:54 jonathan Exp $ */ /* *************** *** 131,137 **** /* Section types we can't handle... */ else if (ph[i].p_type != PT_LOAD) { fprintf(stderr, ! "Program header %d type %d can't be converted.\n"); exit(1); } /* Writable (data) segment? */ --- 131,138 ---- /* Section types we can't handle... */ else if (ph[i].p_type != PT_LOAD) { fprintf(stderr, ! "Program header %d type %d can't be converted.\n", ! i, ph[i].p_type); exit(1); } /* Writable (data) segment? */ *************** *** 334,340 **** char ibuf[4096]; int remaining, cur, count; ! /* Go the the start of the ELF symbol table... */ if (lseek(in, offset, SEEK_SET) < 0) { perror("copy: lseek"); exit(1); --- 335,341 ---- char ibuf[4096]; int remaining, cur, count; ! /* Go to the start of the ELF symbol table... */ if (lseek(in, offset, SEEK_SET) < 0) { perror("copy: lseek"); exit(1);