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 /search.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 '')
-rw-r--r-- | search.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -15,10 +15,10 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: search.c,v 1.41 2014/09/15 13:00:49 okan Exp $ + * $OpenBSD: search.c,v 1.42 2015/01/19 14:54:16 okan Exp $ */ -#include <sys/param.h> +#include <sys/types.h> #include <sys/queue.h> #include <assert.h> @@ -26,6 +26,7 @@ #include <errno.h> #include <fnmatch.h> #include <glob.h> +#include <limits.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -172,7 +173,7 @@ search_print_client(struct menu *mi, int list) static void search_match_path(struct menu_q *menuq, struct menu_q *resultq, char *search, int flag) { - char pattern[MAXPATHLEN]; + char pattern[PATH_MAX]; glob_t g; int i; |