summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2001-11-21 18:43:27 +0000
committermillert <millert@openbsd.org>2001-11-21 18:43:27 +0000
commitf1aa970e500e1aa39244df209268cfc79bc38a0a (patch)
treefd97919f40427eade0faa551eac532dc641b9ba3
parentmem leak (diff)
downloadwireguard-openbsd-f1aa970e500e1aa39244df209268cfc79bc38a0a.tar.xz
wireguard-openbsd-f1aa970e500e1aa39244df209268cfc79bc38a0a.zip
fix arg reversal that was introduced during ANSIfication
-rw-r--r--usr.bin/mail/names.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/names.c b/usr.bin/mail/names.c
index 8c3d13c72b6..15ffb7d334f 100644
--- a/usr.bin/mail/names.c
+++ b/usr.bin/mail/names.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: names.c,v 1.14 2001/11/21 15:26:39 millert Exp $ */
+/* $OpenBSD: names.c,v 1.15 2001/11/21 18:43:27 millert Exp $ */
/* $NetBSD: names.c,v 1.5 1996/06/08 19:48:32 christos Exp $ */
/*
@@ -38,7 +38,7 @@
#if 0
static const char sccsid[] = "@(#)names.c 8.1 (Berkeley) 6/6/93";
#else
-static const char rcsid[] = "$OpenBSD: names.c,v 1.14 2001/11/21 15:26:39 millert Exp $";
+static const char rcsid[] = "$OpenBSD: names.c,v 1.15 2001/11/21 18:43:27 millert Exp $";
#endif
#endif /* not lint */
@@ -470,7 +470,7 @@ cat(struct name *n1, struct name *n2)
* Return an error if the name list won't fit.
*/
char **
-unpack(struct name *np, struct name *sm)
+unpack(struct name *sm, struct name *np)
{
char **ap, **top;
int t, extra, metoo, verbose;