diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-02-17 13:49:39 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 2005-02-17 13:49:39 +0000 |
commit | 190e9b387d69798952649218e8e9a69a8464dc1c (patch) | |
tree | 845accd36bc5327a6ea366791c1f9e71ed8b80a0 /libexec | |
parent | c41512ad082f6f7ac906a62d9f137f1b1f1abbeb (diff) |
Remove extra return (0); call. otto@, henning@ ok
Diffstat (limited to 'libexec')
-rw-r--r-- | libexec/login_token/init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libexec/login_token/init.c b/libexec/login_token/init.c index 01960a5626a..631a582f66a 100644 --- a/libexec/login_token/init.c +++ b/libexec/login_token/init.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init.c,v 1.2 2003/07/10 00:04:28 david Exp $ */ +/* $OpenBSD: init.c,v 1.3 2005/02/17 13:49:38 aaron Exp $ */ /*- * Copyright (c) 1996 Berkeley Software Design, Inc. All rights reserved. @@ -109,7 +109,6 @@ token_mode(char *mode) for (i = 0; i < sizeof(modes)/sizeof(modes[0]); ++i) if (strstr(mode, modes[i].name) != NULL) return (tt->modes & modes[i].value); - return (0); return (0); } |