16 lines
701 B
Plaintext
16 lines
701 B
Plaintext
|
$OpenBSD: patch-fontforge_print_c,v 1.1 2011/07/08 19:04:05 kili Exp $
|
||
|
--- fontforge/print.c.orig Fri Feb 18 22:33:20 2011
|
||
|
+++ fontforge/print.c Fri Jul 8 17:05:49 2011
|
||
|
@@ -1056,10 +1056,7 @@ static void dump_pdfprologue(PI *pi) {
|
||
|
tm = localtime(&now);
|
||
|
fprintf( pi->out, " /CreationDate (D:%4d%02d%02d%02d%02d",
|
||
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday, tm->tm_hour, tm->tm_min );
|
||
|
- if ( timezone==0 )
|
||
|
- fprintf( pi->out, "Z)\n" );
|
||
|
- else
|
||
|
- fprintf( pi->out, "%+02d')\n", (int) timezone/3600 ); /* doesn't handle half-hour zones */
|
||
|
+ fprintf( pi->out, "Z)\n" );
|
||
|
if ( author!=NULL )
|
||
|
fprintf( pi->out, " /Author (%s)\n", author );
|
||
|
fprintf( pi->out, ">>\n" );
|