diff options
author | John Gilmore <gnu@cygnus> | 1992-10-28 21:44:39 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-10-28 21:44:39 +0000 |
commit | 17f9c8177526817122538de14f6c038af2227569 (patch) | |
tree | f7bec2bb94729e4748ad7fdfb39868e411e8343b /bfd/coffcode.h | |
parent | cc1b689f2e4d72501144a26ed6ae77474ac1db9b (diff) | |
download | gdb-17f9c8177526817122538de14f6c038af2227569.zip gdb-17f9c8177526817122538de14f6c038af2227569.tar.gz gdb-17f9c8177526817122538de14f6c038af2227569.tar.bz2 |
(coff_write_object_contents): Zero timestamp field.
Diffstat (limited to 'bfd/coffcode.h')
-rw-r--r-- | bfd/coffcode.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/bfd/coffcode.h b/bfd/coffcode.h index 348ba64..a3c03b7 100644 --- a/bfd/coffcode.h +++ b/bfd/coffcode.h @@ -2603,21 +2603,11 @@ DEFUN(coff_write_object_contents,(abfd), /* We will NOT put a fucking timestamp in the header here. Every time you - put it back, I will come in and take it out again. I'm sorry. This + put it back, I will come in and take it out again. I'm sorry. This field does not belong here. We fill it with a 0 so it compares the same but is not a reasonable time. -- gnu@cygnus.com */ - /* - Well, I like it, and now we have *customers* who have requested it, - so I'm conditionally compiling it in. - - sac@cygnus.com - */ -#ifndef NOCOFF_TIMESTAMP - internal_f.f_timdat = time(0); -#else internal_f.f_timdat = 0; -#endif if (bfd_get_symcount(abfd) != 0) internal_f.f_symptr = sym_base; |