Skip to content

Commit

Permalink
Missing hdr, spacing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Marriott committed Jun 27, 2007
1 parent 3842a2a commit 68755bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion mail-time.c
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
#include <sys/types.h>

#include <ctype.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

Expand Down Expand Up @@ -56,7 +57,7 @@ tzlookup(const char *tz, int *off)

saved_tz = getenv("TZ");
if (saved_tz != NULL)
saved_tz = xstrdup(saved_tz);
saved_tz = xstrdup(saved_tz);

/* Set the new timezone. */
if (setenv("TZ", tz, 1) != 0)
Expand Down

0 comments on commit 68755bd

Please sign in to comment.