File: last.c

package info (click to toggle)
acct 6.5.5-2.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,948 kB
  • ctags: 1,957
  • sloc: ansic: 14,238; sh: 10,666; cpp: 290; makefile: 138
file content (789 lines) | stat: -rw-r--r-- 21,056 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
/*
Copyright (C) 1993, 1996, 1997, 2003, 2008, 2009, 2010 Free Software Foundation, Inc.

This file is part of the GNU Accounting Utilities

The GNU Accounting Utilities are free software; you can redistribute
them and/or modify them under the terms of the GNU General Public
License as published by the Free Software Foundation; either version
3, or (at your option) any later version.

The GNU Accounting Utilities are distributed in the hope that they will
be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License
along with the GNU Accounting Utilities; see the file COPYING.  If
not, write to the Free Software Foundation, 675 Mass Ave, Cambridge,
MA 02139, USA.
*/

#include "config.h"
#include <stdio.h>

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif

#include <ctype.h>

#ifdef HAVE_STRING_H
#include <string.h>
#endif

#include <sys/types.h>

#ifdef TIME_WITH_SYS_TIME
# include <sys/time.h>
# include <time.h>
#else
# ifdef HAVE_SYS_TIME_H
#  include <sys/time.h>
# else
#  include <time.h>
# endif
#endif

#ifdef AMIX
#include </usr/ucbinclude/sys/signal.h>
#else
#include <signal.h>
#endif

#include "common.h"
#include "files.h"
#include "utmp_rd.h"
#ifdef HAVE_GETOPT_LONG_ONLY
#include <getopt.h>
#else
#include "getopt.h"
#endif
#include "hashtab.h"
#include "version.h"


/* globals */

char *program_name;		/* name of the program, for usage */

int debugging_enabled = 0;	/* Nonzero means print internal
				   information relating to entries
				   read, data structures, etc. */

long time_warp_leniency = 60;	/* Number of seconds that an entry can
				   be "before" the previous one -- to
				   deal with simultaneous init(8)
				   writes, or to overlook problems
				   with sun's wtmp files. */

long time_warp_suspicious = 31536000; /* Anything smaller than this
					 jump will be considered
					 normal.  A year is pretty
					 safe to assume... */

int print_file_problems = 0;	/* when there's a problem with the
				   file's format, scream! */

int print_year = 0;		/* Print the year when displaying
				   dates. */

int print_seconds = 0;		/* Print the seconds when displaying
				   dates. */

time_t last_time = 0;		/* time of last event (error checking)
				   needs to be a global so that the
				   signal handler can get at its value
				   when the program is interrupted */


char *last_event = NULL;	/* Set to NULL initially (means that a
				   user is still logged on) but
				   changed to "crash" or "down" as
				   appropriate. */

time_t last_event_time;		/* last time the machine rebooted/shutdown */

long num_lines_to_print = -1;	/* the -n option -- starts out at -1,
				   which is a signal to the program
				   not to limit the number of lines
				   printed. */

int truncate_ftp_entries = 1;	/* Nonzero means shorten "ftpxxx"
				   entries to "ftp" -- most progs do
				   this by default, but we should have
				   a flag for it */

#ifdef HAVE_STRUCT_UTMP_UT_TYPE
int print_which_recs = 0;	/* If 0, only print the usual.  If 1,
				   print run level information,
				   shutdowns, and time changes.  If 2
				   or greater, print the whole, dirty
				   business. */
#endif

#ifdef HAVE_STRUCT_UTMP_UT_ADDR
int print_addresses = 0;	/* should we print the ut_addr field? */
#endif

/* Some systems (like Linux with the newer glibc) have very long field
   lengths for usernames, ttys, and hostnames.  While it's useful to
   print out the entire values from time to time, the casual browser
   doesn't care (and it screws up the 80-column formatting).  Keep
   track of desired field widths with these variables. */

#define my_min(x,y) ((x) < (y) ? (x) : (y))
int print_name_len = my_min (NAME_LEN, 8);
int print_tty_len = my_min (TTY_LEN, 12);
int print_host_len = my_min (HOST_LEN, 16);
#undef my_min


/* A table of names/ttys that the user wants to know about.  */

struct hashtab *names = NULL;

/* A table of logins/logouts. */

struct hashtab *login_table = NULL;

struct login_data
{
  time_t time;
  short fake_entry;
};

void log_everyone_in (time_t);
void update_system_time (time_t);
void log_out (struct utmp *entry, short fake_flag);
void log_in (struct utmp *);
void print_record (struct utmp *, time_t logout_time,
                   char *, char *, char *);
void display_date (time_t now);

struct sigaction sigact;
#if defined (SVR4) && !defined (_POSIX_SOURCE)
RETSIGTYPE handler (int, int, struct sigcontext *);
#else
RETSIGTYPE handler (int);
#endif

/* code */

int main(int argc, char *argv[])
{
  int c = 1;
  int other_wtmp_file_specified = 0; /* nonzero if the user used the
					`-f' or `--file' flags */

  program_name = argv[0];

  /* Tell the utmp reader that we want to do things backwards! */

  utmp_init (1);

  /* Read options */

  /* Aaargh!  We've got to parse the arguments manually before we give
     them to getopt, since it can't handle `last -10' and things like
     it... */

  for (; c < argc; c++)
    {
      if (argv[c][0] == '-' && isdigit (argv[c][1]))
        {
          /* This looks like an old-style option -- read the number! */
          int d;

          num_lines_to_print = strtol (argv[c] + 1, (char **)NULL, 10);
          if (num_lines_to_print < 1)
            fatal ("number of lines to print must be positive and non-zero");

          /* renumber the argv options */
          for (d = c; d; d--)
            argv[d] = argv[d - 1];

          argc--;
          argv++;
          c--;
        }
    }

  while (1)
    {
      int option_index = 0;

      static struct option long_options[] =
      {
        { "complain", no_argument, NULL, 1
        },
        { "lines", required_argument, NULL, 3 },
        { "debug", no_argument, NULL, 4 },
        { "tw-leniency", required_argument, NULL, 5 },
        { "version", no_argument, NULL, 6 },
        { "help", no_argument, NULL, 7 },
        { "file", required_argument, NULL, 8 },
        { "no-truncate-ftp-entries", no_argument, NULL, 9 },
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
        { "all-records", no_argument, NULL, 10 },
#endif
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
        { "ip-address", no_argument, NULL, 11 },
#endif
        { "print-year", no_argument, NULL, 12 },
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
        { "more-records", no_argument, NULL, 13 },
#endif
        { "tw-suspicious", required_argument, NULL, 14 },
        { "print-seconds", no_argument, NULL, 15 },
        { "wide", no_argument, NULL, 16 },
        { 0, 0, 0, 0 }
      };

      c = getopt_long (argc, argv,
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
                       "a"
#endif
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
                       "i"
#endif
                       "f:n:s"
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
                       "x"
#endif
                       "wyV",
                       long_options, &option_index);

      if (c == EOF)
        break;

      switch (c)
        {
        case 1:
          print_file_problems = 1;
          break;
        case 'n':
        case 3:
          num_lines_to_print = strtol(optarg, (char **)NULL, 10);
          if (num_lines_to_print < 1)
            fatal ("number of lines to print must be positive and non-zero");
          break;
        case 4:
          debugging_enabled = 1;
          print_file_problems = 1;
          break;
        case 5:
          time_warp_leniency = strtol(optarg, (char **)NULL, 10);
          if (time_warp_leniency < 0)
            fatal ("time warp leniency value has to be non-negative");
          break;
        case 'V':
        case 6:
          printf ("%s: GNU Accounting Utilities (release %s)\n",
                  program_name, VERSION_STRING);
          exit(EXIT_SUCCESS);
        case 'f':
        case 8:
          add_utmp_file (optarg);
          other_wtmp_file_specified = 1;
          break;
        case 9:
          truncate_ftp_entries = 0;
          break;
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
        case 'a':
        case 10:
          print_which_recs = 2;
          break;
#endif
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
        case 'i':
        case 11:
          print_addresses = 1;
          break;
#endif
        case 'y':
        case 12:
          print_year = 1;
          break;
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
        case 'x':
        case 13:
          print_which_recs = 1;
          break;
#endif
        case 14:
          time_warp_suspicious = strtol(optarg, (char **)NULL, 10);
          if (time_warp_suspicious < 0)
            fatal ("time warp suspicious value has to be non-negative");
          if (time_warp_suspicious <= time_warp_leniency)
            fatal ("time warp suspicious value has to greater than the time warp leniency value");
          break;
        case 's':
        case 15:
          print_seconds = 1;
          break;
        case 'w':
        case 16:
          /* Print the entire field widths, rather than our
                   conservative, 80-column defaults */
          print_name_len = NAME_LEN;
          print_tty_len = TTY_LEN;
          print_host_len = HOST_LEN;
          break;
        case 'h':
        case 7:
          /* This should fall through to default! */
        default:
          give_usage();
          exit(EXIT_FAILURE);
        }
    }

  /* Init the hash table for usernames.  Don't init it if we don't
     have any extra arguments so we can quickly check if we have
     anything in the list. */

  if (optind < argc)
    {
      names = hashtab_init (0);

      while (optind < argc)
        {
          char *string;

          /* add the username/tty as-is */

          hashtab_create (names, argv[optind], 0);

          /* add the name as "tty<name>" for u*x compatibilty */

          string = (char *) xmalloc ((strlen (argv[optind]) + 4)
                                     * sizeof (char));
          sprintf (string, "tty%s", argv[optind]);
          hashtab_create (names, string, 0);
          free (string);

          optind++;

#ifdef HAVE_STRUCT_UTMP_UT_TYPE
          if (!print_which_recs)
            print_which_recs = 1;
#endif
        }

      if (debugging_enabled)
        hashtab_dump_keys (names, stddebug);
    }

  if (! other_wtmp_file_specified)
    add_utmp_file (WTMP_FILE_LOC);

  /* Create hash table for logins. */

  login_table = hashtab_init (0);

  /* Go! */

  parse_entries ();

  (void)fputs ("\nwtmp begins ", stdout);
  display_date (last_time);
  (void)fputc ('\n', stdout);

  exit (EXIT_SUCCESS);			/* a GUARANTEED return value to the env */
}

/* guess what this does... */

void give_usage(void)
{
  (void)printf("\
                Usage: %s [-"
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
               "a"
#endif
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
               "i"
#endif
               "hs"
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
               "x"
#endif
               "yV] [-<lines>] [-n <lines>] [-f <file>] [people] [ttys] ...\n\
                [--lines <num>] [--file <file>] [--complain] [--debug]\n\
                [--version] [--tw-leniency <value>] [--tw-suspicious <value>]\n\
                [--no-truncate-ftp-entries] [--print-year] [--print-seconds]\n\
                "
#ifdef HAVE_STRUCT_UTMP_UT_TYPE
               "[--more-records] [--all-records] "
#endif
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
               "[--ip-address] "
#endif
               "[--help]\n", program_name);
  print_wtmp_file_location ();
}

/* Since the routines in ac & last are so similar, just include them
from another file. */

#define BACKWARDS 1
#include "al_share.cpp"

/* since the sys clock has changed, each entry's login time has to be
* adjusted...  */

void update_system_time(time_t the_time)
{
  struct hashtab_order ho;
  struct hashtab_elem *he;

  for (he = hashtab_first (login_table, &ho);
       he != NULL;
       he = hashtab_next (&ho))
    {
      struct login_data *l = hashtab_get_value (he);
      l->time += the_time;
    }
}

/* Log all entries in at THE_TIME. */

void log_everyone_in(time_t the_time)
{
  struct hashtab_order ho;
  struct hashtab_elem *he;

  for (he = hashtab_first (login_table, &ho);
       he != NULL;
       he = hashtab_next (&ho))
    {
      struct login_data *l = hashtab_get_value (he);

      /* If there was a real log out record present in the file
      without a corresponding login, we should print it. */

      if (debugging_enabled && (! l->fake_entry))
        {
          struct utmp this;
          char *ttyname = hashtab_get_key (he);

          memset (&this, 0, sizeof (this));
          strncpy (this.ut_line, ttyname, TTY_LEN);
          this.ut_time = the_time;

          print_record (&this, l->time, NULL, NULL, "unpaired");
        }

      hashtab_delete (he);
    }
}

/* Put a terminal into the hash table. */

void log_out(struct utmp *entry, short fake_flag)
{
  struct hashtab_elem *he;

  if (entry->ut_line[0] == '\0')
    {
      if (print_file_problems)
        {
          utmp_print_file_and_line (stddebug);
          fprintf (stddebug, ": problem: trying to hash rec with ut_line == NULL\n");
        }
      return;
    }

  /* Match the most recent login on the terminal. */

  he = hashtab_find (login_table, entry->ut_line, (unsigned int)TTY_LEN);

  if (he != NULL)
    {
      struct login_data *l = hashtab_get_value (he);

      if ((! l->fake_entry) && print_file_problems)
        {
          char *ttyname = hashtab_get_key (he);
          utmp_print_file_and_line (stddebug);
          fprintf (stddebug, ": problem: duplicate record for line `%.*s'\n", TTY_LEN, ttyname);
        }

      /* Write over the old values. */

      l->time = entry->ut_time;
      l->fake_entry = fake_flag;

      return;
    }
  else
    {
      /* If we get here, we didn't find the entry in the list, so add
      a new one. */

      struct login_data l;

      l.time = entry->ut_time;
      l.fake_entry = fake_flag;

      he = hashtab_create (login_table, entry->ut_line, TTY_LEN);
      hashtab_set_value (he, &l, sizeof (l));
    }
}

/* Remove an entry from the hash table. */

void log_in(struct utmp *entry)
{
  struct hashtab_elem *he;

  if (entry->ut_line[0] == '\0')
    {
      if (print_file_problems)
        {
          utmp_print_file_and_line (stddebug);
          fprintf (stddebug,
                   ": problem: trying to hash rec with ut_line == NULL\n");
        }
      return;
    }

  he = hashtab_find (login_table, entry->ut_line, (unsigned int)TTY_LEN);

  if (he != NULL)
    {
      struct login_data *l = hashtab_get_value (he);

      if (l->fake_entry && print_file_problems)
        {
          /* If this happens, we assume that the logout time for ENTRY
             is the the same as the next login time on the tty. */

          utmp_print_file_and_line(stddebug);
          (void)fprintf(stddebug, ": problem: missing logout record for `%.*s'\n",
                        TTY_LEN, entry->ut_line);
        }

      print_record(entry, l->time, NULL, NULL, NULL);

      hashtab_delete (he);
    }
  else
    {
      /* We didn't find any corresponding logout, so either the person
      it still logged in or there's a problem with the wtmp file
      (logout without login). */

      print_record (entry, 0, NULL, NULL, NULL);
    }

  /* Make another logout entry at the current time (a fake one) so we
     can detect wtmp file errors (logins without logouts). */

  log_out (entry, TRUE);
}


/* Print the record to the screen.  If LOGOUT_TIME is zero, print out
   the difference in time between LOGIN and the last recorded event
   (crash, down, etc.).  If other strings should be printed for the
   UT_NAME, UT_LINE, or end-of-line fields, they can be passed in as
   the last three arguments. */

void print_record(struct utmp *login, time_t logout_time,
                  char *replacement_name, char *replacement_tty,
                  char *special_message)
{
  char *print_name;
  char *print_tty;
  char sanitized_tty[TTY_LEN];

  /* Do we want to print this entry?  Check our list of user-desired
     items. */

  if (! ((names == NULL)
         || hashtab_find (names, login->ut_name, (unsigned int)NAME_LEN)
         || hashtab_find (names, login->ut_line, (unsigned int)TTY_LEN)))
    return;			/* don't want to print this record */


  /* Choose replacement names, if provided.  Don't do this if we're on
     a BSD system. */

#ifdef HAVE_STRUCT_UTMP_UT_TYPE
  if (replacement_tty)
    print_tty = replacement_tty;
  else
#endif
    if (truncate_ftp_entries && (strncmp (login->ut_line, "ftp", 3) == 0))
      print_tty = "ftp";		/* strip number from "ftpxxx" entry */
    else
      print_tty = login->ut_line;

  print_name = (replacement_name ? replacement_name : login->ut_name);


  /* Sanitize the tty name (get rid of control characters) */

  {
    int i = 0;

    for (; (print_tty[i] != '\0') && (i < TTY_LEN); i++)
      sanitized_tty[i] = (isprint (print_tty[i]) && isascii (print_tty[i])
                          ? print_tty[i]
                          : '?');
    if (i < TTY_LEN)
      sanitized_tty[i] = '\0';
  }

  /* Print the name and tty. */

  (void)printf("%-*.*s %-*.*s ",
               print_name_len, print_name_len, print_name,
               print_tty_len, print_tty_len, sanitized_tty);


#ifdef HAVE_STRUCT_UTMP_UT_ADDR
  if (print_addresses)
    {
      struct in_addr a;
      a.s_addr = login->ut_addr;
      (void)printf("%-15.15s ", (login->ut_addr) ? inet_ntoa (a) : "");
    }
#endif

#ifdef HAVE_STRUCT_UTMP_UT_HOST
#ifdef HAVE_STRUCT_UTMP_UT_ADDR
  /* If we have both HOST and ADDR, only print one, or else we go
         beyond 80 characters in width. */
  if (!print_addresses)
#endif
    (void)printf ("%-*.*s ", print_host_len, print_host_len, login->ut_host);
#endif

  display_date (login->ut_time);

  if (special_message)
    (void)printf ("  %s\n", special_message);
  else
    {
#ifdef HAVE_SNPRINTF
      char temp_str[16];
#else
      char temp_str[15];
#endif
      int days, hours, minutes, seconds;
      int diff, use_last_event = 0;

      if (logout_time == 0)
        {
          logout_time = last_event_time;
          use_last_event = 1;
        }

      diff = (int) logout_time - login->ut_time;
      days = (int) (diff / 86400);
      diff -= 86400 * days;
      hours = (int) (diff / 3600);
      diff -= 3600 * hours;
      minutes = (int) (diff / 60);
      diff -= 60 * minutes;
      seconds = diff;
#ifdef HAVE_SNPRINTF
      if (days)
        {
          if (print_seconds)
            (void)snprintf (temp_str, sizeof(temp_str), "(%d+%02d:%02d:%02d)",
                            days, hours, minutes, seconds);
          else
            (void)snprintf (temp_str, sizeof(temp_str),"(%d+%02d:%02d)", days, hours, minutes);
        }
      else
        {
          if (print_seconds)
            (void)snprintf (temp_str, sizeof(temp_str)," (%02d:%02d:%02d)",
                            hours, minutes, seconds);
          else
            (void)snprintf (temp_str, sizeof(temp_str)," (%02d:%02d)", hours, minutes);
        }
#else
      if (days)
        {
          if (print_seconds)
            (void)sprintf (temp_str, "(%d+%02d:%02d:%02d)",
                           days, hours, minutes, seconds);
          else
            (void)sprintf (temp_str, "(%d+%02d:%02d)", days, hours, minutes);
        }
      else
        {
          if (print_seconds)
            (void)sprintf (temp_str, " (%02d:%02d:%02d)",
                           hours, minutes, seconds);
          else
            (void)sprintf (temp_str, " (%02d:%02d)", hours, minutes);
        }
#endif
      if (use_last_event)
        {
          if (last_event == NULL)

            (void)fputs ("  still logged in\n", stdout);
          else
            (void)printf ("- %-5.5s %s\n", last_event, temp_str);
        }
      else
        {
          struct tm *tmptr;
          time_t temp_time = logout_time;
          tmptr = localtime (&temp_time);
          if (print_seconds)
            printf ("- %02d:%02d:%02d %s\n",
                    tmptr->tm_hour, tmptr->tm_min, tmptr->tm_sec, temp_str);
          else
            printf ("- %02d:%02d %s\n",
                    tmptr->tm_hour, tmptr->tm_min, temp_str);
        }
    }

  if (num_lines_to_print > -1)
    {
      num_lines_to_print--;
      if (num_lines_to_print == 0)    /* max lines printed */
        exit(EXIT_SUCCESS);
    }
}

/* Our signal handler */

RETSIGTYPE
#if defined (SVR4) && !defined (_POSIX_SOURCE)
handler(int sig, int code, struct sigcontext *scp)
#else
handler(int sig)
#endif
{
  (void)fputs ("\ninterrupted at ", stdout);
  display_date (last_time);
  (void)putchar ('\n');
  exit(EXIT_SUCCESS);
}

/* Display the date, paying attention to the PRINT_YEAR flag. */

void display_date(time_t now)
{
  char *ct = ctime (&now);

  printf ("%-10.10s ", ct);

  if (print_year)
    printf ("%-4.4s ", ct + 20);

  if (print_seconds)
    printf ("%-8.8s ", ct + 11);
  else
    printf ("%-5.5s ", ct + 11);
}