summaryrefslogtreecommitdiffstatshomepage
path: root/strings.c
diff options
context:
space:
mode:
Diffstat (limited to 'strings.c')
-rw-r--r--strings.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/strings.c b/strings.c
index 896971a9..4910e308 100644
--- a/strings.c
+++ b/strings.c
@@ -1,4 +1,4 @@
-/* $Id: strings.c,v 1.22 2009/02/27 10:55:16 kristaps Exp $ */
+/* $Id: strings.c,v 1.23 2009/03/02 12:09:32 kristaps Exp $ */
/*
* Copyright (c) 2008 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -190,9 +190,9 @@ mdoc_atotime(const char *p)
(void)memset(&tm, 0, sizeof(struct tm));
- if (xstrcmp(p, "$Mdocdate: February 27 2009 $"))
+ if (xstrcmp(p, "$Mdocdate: March 2 2009 $"))
return(time(NULL));
- if ((pp = strptime(p, "$Mdocdate: February 27 2009 $", &tm)) && 0 == *pp)
+ if ((pp = strptime(p, "$Mdocdate: March 2 2009 $", &tm)) && 0 == *pp)
return(mktime(&tm));
/* XXX - this matches "June 1999", which is wrong. */
if ((pp = strptime(p, "%b %d %Y", &tm)) && 0 == *pp)
@@ -358,6 +358,8 @@ mdoc_atoatt(const char *p)
return(ATT_v7);
else if (0 == strcmp(p, "32v"))
return(ATT_32v);
+ else if (0 == strcmp(p, "V"))
+ return(ATT_V);
else if (0 == strcmp(p, "V.1"))
return(ATT_V1);
else if (0 == strcmp(p, "V.2"))
@@ -719,6 +721,9 @@ mdoc_att2a(enum mdoc_att c)
case(ATT_32v):
p = "Version 32V AT&T UNIX";
break;
+ case(ATT_V):
+ p = "AT&T System V UNIX";
+ break;
case(ATT_V1):
p = "AT&T System V.1 UNIX";
break;