diff options
Diffstat (limited to 'usr/src/lib/libshell/common/sh/path.c')
-rw-r--r-- | usr/src/lib/libshell/common/sh/path.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr/src/lib/libshell/common/sh/path.c b/usr/src/lib/libshell/common/sh/path.c index c6f691aef4..be90dd7b8f 100644 --- a/usr/src/lib/libshell/common/sh/path.c +++ b/usr/src/lib/libshell/common/sh/path.c @@ -1173,6 +1173,7 @@ retry: } exscript(shp,path,argv,envp); #ifndef apollo + /* FALLTHROUGH */ case EACCES: { struct stat statb; @@ -1186,9 +1187,9 @@ retry: #endif } } - /* FALL THROUGH */ #endif /* !apollo */ #ifdef ENAMETOOLONG + /* FALLTHROUGH */ case ENAMETOOLONG: #endif /* ENAMETOOLONG */ #if !SHOPT_SUID_EXEC @@ -1211,6 +1212,7 @@ retry: goto retry; return(pid); } + /* FALLTHROUGH */ default: errormsg(SH_DICT,ERROR_system(ERROR_NOEXEC),e_exec,path); } |