Renamed undelete() to undelete_messages() to avoid conflict with new

undelete() syscall.

Submitted by:	partly by roberto
This commit is contained in:
Bruce Evans 1997-04-14 16:49:30 +00:00
parent 0863cbc199
commit c05b924fca
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=24932
3 changed files with 3 additions and 3 deletions

View File

@ -345,7 +345,7 @@ delm(msgvec)
* Undelete the indicated messages.
*/
int
undelete(msgvec)
undelete_messages(msgvec)
int *msgvec;
{
register struct message *mp;

View File

@ -58,7 +58,7 @@ struct cmd cmdtab[] = {
"delete", delete, W|P|MSGLIST, 0, MMNDEL,
"dp", deltype, W|MSGLIST, 0, MMNDEL,
"dt", deltype, W|MSGLIST, 0, MMNDEL,
"undelete", undelete, P|MSGLIST, MDELETED,MMNDEL,
"undelete", undelete_messages, P|MSGLIST, MDELETED,MMNDEL,
"unset", unset, M|RAWLIST, 1, 1000,
"mail", sendmail, R|M|I|STRLIST, 0, 0,
"mbox", mboxit, W|MSGLIST, 0, 0,

View File

@ -239,7 +239,7 @@ void ttyint __P((int));
void ttystop __P((int));
int type __P((int *));
int type1 __P((int *, int, int));
int undelete __P((int *));
int undelete_messages __P((int *));
void unmark __P((int));
char **unpack __P((struct name *));
int unread __P((int []));