summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorStuart Henderson <sthen@cvs.openbsd.org>2009-04-26 10:30:08 +0000
committerStuart Henderson <sthen@cvs.openbsd.org>2009-04-26 10:30:08 +0000
commit1f20d365027b2306ef0b9bfc74cb5f4d70a2f8c4 (patch)
tree0bc7f0c0615e183322e8ee63eda51b56c7b6cd31 /usr.bin
parent87773a6c43de051f8584703969dcdd9584498a41 (diff)
make two similar text strings identical; improves consistency and shrinks
the text segment slightly (though due to padding it does not change the size of the binary). ok martynas@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ftp/util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ftp/util.c b/usr.bin/ftp/util.c
index 63288d9c930..1edf343ff9b 100644
--- a/usr.bin/ftp/util.c
+++ b/usr.bin/ftp/util.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: util.c,v 1.57 2009/04/13 01:47:04 deraadt Exp $ */
+/* $OpenBSD: util.c,v 1.58 2009/04/26 10:30:07 sthen Exp $ */
/* $NetBSD: util.c,v 1.12 1997/08/18 10:20:27 lukem Exp $ */
/*-
@@ -64,7 +64,7 @@
*/
#if !defined(lint) && !defined(SMALL)
-static const char rcsid[] = "$OpenBSD: util.c,v 1.57 2009/04/13 01:47:04 deraadt Exp $";
+static const char rcsid[] = "$OpenBSD: util.c,v 1.58 2009/04/26 10:30:07 sthen Exp $";
#endif /* not lint and not SMALL */
/*
@@ -412,7 +412,7 @@ remglob2(char *argv[], int doswitch, char **errbuf, FILE **ftemp, char *type)
temp[len++] = '/';
(void)strlcpy(&temp[len], TMPFILE, sizeof temp - len);
if ((fd = mkstemp(temp)) < 0) {
- warn("unable to create temporary file %s", temp);
+ warn("unable to create temporary file: %s", temp);
return (NULL);
}
close(fd);