removed all stupid register declarations

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1033 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1996-11-17 20:04:43 +00:00
parent 856df79afc
commit 239db0f710
37 changed files with 215 additions and 214 deletions

View File

@@ -985,7 +985,7 @@ char *
getline(char *s, int n)
{
int c;
register char *cs;
char *cs;
cs = s;
/* tmpline may contain saved command from urgent mode interruption */
@@ -1036,8 +1036,8 @@ getline(char *s, int n)
/* Don't syslog passwords */
syslog(LOG_DEBUG, "command: %.5s ???", s);
} else {
register char *cp;
register int len;
char *cp;
int len;
/* Don't syslog trailing CR-LF */
len = strlen(s);