X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/6c42153ad9362cc676ea66563bf400d7511b3b68..6840e8ab4e69caead96fced2ae896f778651d113:/sbr/m_maildir.c?ds=sidebyside diff --git a/sbr/m_maildir.c b/sbr/m_maildir.c index 441ca502..1fca93c0 100644 --- a/sbr/m_maildir.c +++ b/sbr/m_maildir.c @@ -2,8 +2,6 @@ /* * m_maildir.c -- get the path for the mail directory * - * $Id$ - * * This code is Copyright (c) 2002, by the authors of nmh. See the * COPYRIGHT file in the root directory of the nmh distribution for * complete copyright information. @@ -29,7 +27,7 @@ static char *exmaildir (char *); char * m_maildir (char *folder) { - register char *cp, *ep; + char *cp, *ep; if ((cp = exmaildir (folder)) && (ep = cp + strlen (cp) - 1) > cp @@ -43,7 +41,7 @@ m_maildir (char *folder) char * m_mailpath (char *folder) { - register char *cp; + char *cp; char maildir[BUFSIZ]; if (*folder != '/' @@ -65,7 +63,7 @@ m_mailpath (char *folder) static char * exmaildir (char *folder) { - register char *cp, *pp; + char *cp, *pp; /* use current folder if none is specified */ if (folder == NULL)