diff options
author | okan | 2015-01-19 14:54:16 +0000 |
---|---|---|
committer | okan | 2015-01-19 14:54:16 +0000 |
commit | 69c7524909cec83591a6cea56722753922d9999a (patch) | |
tree | 72877cdf61c2c8dd2e5e35e0909cb9058c225ca0 /kbfunc.c | |
parent | 526655bfc9928c3519a08eba2fbeb5806ae387df (diff) | |
download | cwm-69c7524909cec83591a6cea56722753922d9999a.tar.gz |
Switch to limits.h; replace MAXPATHLEN and MAXHOSTNAMELEN with PATH_MAX
and HOST_NAME_MAX+1, respectively.
ok doug@
Diffstat (limited to 'kbfunc.c')
-rw-r--r-- | kbfunc.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -15,15 +15,16 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: kbfunc.c,v 1.104 2014/09/27 19:04:32 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.105 2015/01/19 14:54:16 okan Exp $ */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/queue.h> #include <dirent.h> #include <err.h> #include <errno.h> +#include <limits.h> #include <paths.h> #include <signal.h> #include <stdio.h> @@ -238,7 +239,7 @@ kbfunc_exec(struct client_ctx *cc, union arg *arg) #define NPATHS 256 struct screen_ctx *sc = cc->sc; char **ap, *paths[NPATHS], *path, *pathcpy; - char tpath[MAXPATHLEN]; + char tpath[PATH_MAX]; const char *label; DIR *dirp; struct dirent *dp; @@ -323,8 +324,8 @@ kbfunc_ssh(struct client_ctx *cc, union arg *arg) struct menu_q menuq; FILE *fp; char *buf, *lbuf, *p; - char hostbuf[MAXHOSTNAMELEN]; - char path[MAXPATHLEN]; + char hostbuf[HOST_NAME_MAX+1]; + char path[PATH_MAX]; int l; size_t len; |