From 4b8f49b998ee2f1420d45669bc3a4a515482cc9f Mon Sep 17 00:00:00 2001 From: Christian Neukirchen Date: Thu, 15 Sep 2016 15:39:35 +0200 Subject: cvs update --- src/usr.bin/calendar/Makefile | 7 +++---- src/usr.bin/calendar/calendars/calendar.history | 6 +++--- src/usr.bin/calendar/day.c | 6 ++++-- src/usr.bin/signify/signify.c | 12 ++++++------ src/usr.bin/signify/zsig.c | 4 ++-- 5 files changed, 18 insertions(+), 17 deletions(-) (limited to 'src') diff --git a/src/usr.bin/calendar/Makefile b/src/usr.bin/calendar/Makefile index ee0950c..6be97aa 100644 --- a/src/usr.bin/calendar/Makefile +++ b/src/usr.bin/calendar/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2015/10/23 10:33:52 tedu Exp $ +# $OpenBSD: Makefile,v 1.11 2016/09/11 06:40:57 natano Exp $ PROG= calendar SRCS= calendar.c io.c day.c pesach.c ostern.c paskha.c @@ -8,11 +8,10 @@ beforeinstall: ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/calendars/calendar.* ${DESTDIR}/usr/share/calendar .for lang in ${INTER} - @test -d ${DESTDIR}/usr/share/calendar/${lang} || \ - mkdir ${DESTDIR}/usr/share/calendar/${lang} + ${INSTALL} -d -o root -g wheel ${DESTDIR}/usr/share/calendar/${lang} ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \ ${.CURDIR}/calendars/${lang}/calendar.* \ - ${DESTDIR}/usr/share/calendar/${lang}; + ${DESTDIR}/usr/share/calendar/${lang} .endfor .include diff --git a/src/usr.bin/calendar/calendars/calendar.history b/src/usr.bin/calendar/calendars/calendar.history index 70daeb9..88f66bf 100644 --- a/src/usr.bin/calendar/calendars/calendar.history +++ b/src/usr.bin/calendar/calendars/calendar.history @@ -1,7 +1,7 @@ /* * History * - * $OpenBSD: calendar.history,v 1.78 2016/02/16 09:08:51 jmc Exp $ + * $OpenBSD: calendar.history,v 1.79 2016/09/14 14:10:18 jmc Exp $ */ #ifndef _calendar_history_ @@ -348,8 +348,8 @@ 09/13 British defeat the French at Plains of Abraham near Quebec City, 1759 09/13 Building of Hadrian's Wall begun, 122 09/13 Chiang Kai-Shek becomes president of China, 1943 -09/14 The Selective Service Act establishes the first peacetime draft, 1940 -09/15 The Nazi's adopt a new national flag with the swastika, 1935 +09/14 The Selective Service Act establishes the first US peacetime draft, 1940 +09/15 The Nazis adopt a new national flag with the swastika, 1935 09/16 General Motors is founded, 1908 09/17 Joshua A. Norton proclaims himself 'Emperor Norton I', 1859 09/17 Battle of Antietam, 1862 diff --git a/src/usr.bin/calendar/day.c b/src/usr.bin/calendar/day.c index 7e8da77..a34e785 100644 --- a/src/usr.bin/calendar/day.c +++ b/src/usr.bin/calendar/day.c @@ -1,4 +1,4 @@ -/* $OpenBSD: day.c,v 1.33 2016/07/13 21:32:01 millert Exp $ */ +/* $OpenBSD: day.c,v 1.34 2016/09/14 15:09:46 millert Exp $ */ /* * Copyright (c) 1989, 1993, 1994 @@ -543,7 +543,9 @@ isnow(char *endp, int bodun) tdiff = difftime(ttmp, f_time)/ SECSPERDAY; if (tdiff <= offset + f_dayAfter || (bodun && tdiff == -1)) { - if ((tmtmp.tm_mon == month) && + if (((tmtmp.tm_mon == month) || + (flags & F_SPECIAL) || + (interval == WEEKLY)) && (tdiff >= 0 || (bodun && tdiff == -1))) { if ((tmp = malloc(sizeof(struct match))) == NULL) diff --git a/src/usr.bin/signify/signify.c b/src/usr.bin/signify/signify.c index dd9a0dc..268a403 100644 --- a/src/usr.bin/signify/signify.c +++ b/src/usr.bin/signify/signify.c @@ -1,4 +1,4 @@ -/* $OpenBSD: signify.c,v 1.117 2016/09/03 12:21:38 espie Exp $ */ +/* $OpenBSD: signify.c,v 1.118 2016/09/10 12:23:16 deraadt Exp $ */ /* * Copyright (c) 2013 Ted Unangst * @@ -452,7 +452,7 @@ check_keytype(const char *pubkeyfile, const char *keytype) size_t len; char *cmp; int slen; - + len = strlen(pubkeyfile); slen = asprintf(&cmp, "-%s.pub", keytype); if (slen < 0) @@ -562,7 +562,7 @@ struct checksum { char algo[32]; }; -static void * +static void * ecalloc(size_t s1, size_t s2, void *data) { void *p; @@ -693,7 +693,7 @@ check(const char *pubkeyfile, const char *sigfile, int quiet, int argc, } void * -verifyzdata(uint8_t *zdata, unsigned long long zdatalen, +verifyzdata(uint8_t *zdata, unsigned long long zdatalen, const char *filename, const char *pubkeyfile, const char *keytype) { struct sig sig; @@ -703,7 +703,7 @@ verifyzdata(uint8_t *zdata, unsigned long long zdatalen, if (zdatalen < sizeof(sig)) errx(1, "signature too short in %s", filename); - siglen = parseb64file(filename, zdata, &sig, sizeof(sig), + siglen = parseb64file(filename, zdata, &sig, sizeof(sig), sigcomment); readpubkey(pubkeyfile, &pubkey, sigcomment, keytype); zdata += siglen; @@ -866,7 +866,7 @@ main(int argc, char **argv) } else { if (!msgfile) usage("must specify message"); - verify(pubkeyfile, msgfile, sigfile, embedded, + verify(pubkeyfile, msgfile, sigfile, embedded, quiet, keytype); } break; diff --git a/src/usr.bin/signify/zsig.c b/src/usr.bin/signify/zsig.c index 4abe30a..d721d8a 100644 --- a/src/usr.bin/signify/zsig.c +++ b/src/usr.bin/signify/zsig.c @@ -1,4 +1,4 @@ -/* $OpenBSD: zsig.c,v 1.11 2016/09/08 16:04:01 espie Exp $ */ +/* $OpenBSD: zsig.c,v 1.12 2016/09/10 12:23:16 deraadt Exp $ */ /* * Copyright (c) 2016 Marc Espie * @@ -266,7 +266,7 @@ zsign(const char *seckeyfile, const char *msgfile, const char *sigfile) buffer = xmalloc(bufsize); time(&clock); strftime(date, sizeof date, "%Y-%m-%dT%H:%M:%SZ", gmtime(&clock)); - snprintf(msg, space, + snprintf(msg, space, "date=%s\n" "key=%s\n" "algorithm=SHA512/256\n" -- cgit 1.4.1