diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 22:21:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 22:21:41 +0000 |
commit | 7d61e7369c8ae985c82e72517c0bc34a8b08dda4 (patch) | |
tree | cc2c66cd3cc88948c857365033c0792b16c65bfe /usr.bin/mail/cmdtab.c | |
parent | a82cc21c1d88b981d12bc183e359e823292be4b8 (diff) |
avoid aliasing against libc symbols
Diffstat (limited to 'usr.bin/mail/cmdtab.c')
-rw-r--r-- | usr.bin/mail/cmdtab.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/cmdtab.c b/usr.bin/mail/cmdtab.c index 1f0965beb6a..62b93ac3f1c 100644 --- a/usr.bin/mail/cmdtab.c +++ b/usr.bin/mail/cmdtab.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmdtab.c,v 1.9 2004/05/10 12:10:50 millert Exp $ */ +/* $OpenBSD: cmdtab.c,v 1.10 2004/09/15 22:21:40 deraadt Exp $ */ /* $NetBSD: cmdtab.c,v 1.7 1996/12/28 07:10:59 tls Exp $ */ /* @@ -34,7 +34,7 @@ #if 0 static const char sccsid[] = "@(#)cmdtab.c 8.2 (Berkeley) 4/20/95"; #else -static const char rcsid[] = "$OpenBSD: cmdtab.c,v 1.9 2004/05/10 12:10:50 millert Exp $"; +static const char rcsid[] = "$OpenBSD: cmdtab.c,v 1.10 2004/09/15 22:21:40 deraadt Exp $"; #endif #endif /* not lint */ @@ -61,7 +61,7 @@ const struct cmd cmdtab[] = { { "top", { top }, MSGLIST, 0, MMNDEL }, { "touch", { stouch }, W|MSGLIST, 0, MMNDEL }, { "preserve", { preserve }, W|MSGLIST, 0, MMNDEL }, - { "delete", { delete }, W|P|MSGLIST, 0, MMNDEL }, + { "delete", { deletecmd }, W|P|MSGLIST, 0, MMNDEL }, { "dp", { deltype }, W|MSGLIST, 0, MMNDEL }, { "dt", { deltype }, W|MSGLIST, 0, MMNDEL }, { "undelete", { undeletecmd }, P|MSGLIST, MDELETED,MMNDEL }, |