summaryrefslogtreecommitdiff
path: root/src/pinky.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pinky.c')
-rw-r--r--src/pinky.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pinky.c b/src/pinky.c
index 4b4f3ed1a..57d87304c 100644
--- a/src/pinky.c
+++ b/src/pinky.c
@@ -179,10 +179,10 @@ time_string (const STRUCT_UTMP *utmp_ent)
/* Don't take the address of UT_TIME_MEMBER directly.
Ulrich Drepper wrote:
- ``... GNU libc (and perhaps other libcs as well) have extended
+ "... GNU libc (and perhaps other libcs as well) have extended
utmp file formats which do not use a simple time_t ut_time field.
In glibc, ut_time is a macro which selects for backward compatibility
- the tv_sec member of a struct timeval value.'' */
+ the tv_sec member of a struct timeval value." */
time_t t = UT_TIME_MEMBER (utmp_ent);
struct tm *tmp = localtime (&t);