diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-19 23:02:26 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2005-11-19 23:02:26 +0000 |
commit | 98d8ec722dc1f84eb7bdfda92701982e3198bc77 (patch) | |
tree | dba786f79a5086fc7617676eef07de5c0669f352 /libexec | |
parent | b2f3ef7ac9797402618accb621de2df260df76dc (diff) |
No longer need volatile since longjmp has been removed.
Ironically silences a gcc warning.
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/login_radius/raddauth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libexec/login_radius/raddauth.c b/libexec/login_radius/raddauth.c index a8fa81f1825..01bd1305892 100644 --- a/libexec/login_radius/raddauth.c +++ b/libexec/login_radius/raddauth.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raddauth.c,v 1.19 2005/11/12 13:28:00 deraadt Exp $ */ +/* $OpenBSD: raddauth.c,v 1.20 2005/11/19 23:02:25 millert Exp $ */ /*- * Copyright (c) 1996, 1997 Berkeley Software Design, Inc. All rights reserved. @@ -144,9 +144,9 @@ int raddauth(char *username, char *class, char *style, char *challenge, char *password, char **emsg) { - volatile u_char req_id; - char * volatile userstyle, * volatile passwd, * volatile pwstate; - volatile int auth_port; + u_char req_id; + char *userstyle, *passwd, *pwstate; + int auth_port; char vector[AUTH_VECTOR_LEN+1], _pwstate[1024], *p, *v; int i; login_cap_t *lc; |