prettiness police
authorJan-Simon Pendry <pendry@ucbvax.Berkeley.EDU>
Mon, 4 Apr 1994 20:40:29 +0000 (12:40 -0800)
committerJan-Simon Pendry <pendry@ucbvax.Berkeley.EDU>
Mon, 4 Apr 1994 20:40:29 +0000 (12:40 -0800)
SCCS-vsn: usr.bin/w/pr_time.c 8.2

usr/src/usr.bin/w/pr_time.c

index 51bd86c..d94697e 100644 (file)
@@ -1,12 +1,12 @@
 /*-
 /*-
- * Copyright (c) 1990, 1993
+ * Copyright (c) 1990, 1993, 1994
  *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
  *     The Regents of the University of California.  All rights reserved.
  *
  * %sccs.include.redist.c%
  */
 
 #ifndef lint
-static char sccsid[] = "@(#)pr_time.c  8.1 (Berkeley) %G%";
+static char sccsid[] = "@(#)pr_time.c  8.2 (Berkeley) %G%";
 #endif /* not lint */
 
 #include <sys/types.h>
 #endif /* not lint */
 
 #include <sys/types.h>
@@ -23,7 +23,7 @@ static char sccsid[] = "@(#)pr_time.c 8.1 (Berkeley) %G%";
  *     Print the time since the user logged in. 
  *
  *     Note: SCCS forces the bizarre string manipulation, things like
  *     Print the time since the user logged in. 
  *
  *     Note: SCCS forces the bizarre string manipulation, things like
- *     8.1 get replaced in the source code.
+ *     8.2 get replaced in the source code.
  */
 void
 pr_attime(started, now)
  */
 void
 pr_attime(started, now)
@@ -43,14 +43,12 @@ pr_attime(started, now)
 
        /* If not today, use day-hour-am/pm. */
        else if (*now / SECSPERDAY != *started / SECSPERDAY) {
 
        /* If not today, use day-hour-am/pm. */
        else if (*now / SECSPERDAY != *started / SECSPERDAY) {
-               (void)strcpy(fmt, "%a%%%p");
-               fmt[3] = 'I';
+               (void)strcpy(fmt, __CONCAT("%a%", "I%p"));
        }
 
        /* Default is hh:mm{am,pm}. */
        else {
        }
 
        /* Default is hh:mm{am,pm}. */
        else {
-               (void)strcpy(fmt, "%l:%%%p");
-               fmt[4] = 'M';
+               (void)strcpy(fmt, __CONCAT("%l:%", "M%p"));
        }
 
        (void)strftime(buf, sizeof(buf), fmt, tp);
        }
 
        (void)strftime(buf, sizeof(buf), fmt, tp);