From 0481b7a38ffdb76b57c3f3522c7b13d28bbc019a Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Thu, 29 Jun 2000 03:13:36 +0000 Subject: [PATCH] replace MIN by min git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8480 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/strsep_copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/roken/strsep_copy.c b/lib/roken/strsep_copy.c index 0c7a7b409..df09f9cdc 100644 --- a/lib/roken/strsep_copy.c +++ b/lib/roken/strsep_copy.c @@ -52,7 +52,7 @@ strsep_copy(const char **stringp, const char *delim, char *buf, size_t len) if(save == NULL) return -1; *stringp = *stringp + strcspn(*stringp, delim); - l = MIN(len, *stringp - save); + l = min(len, *stringp - save); memcpy(buf, save, l); buf[l] = '\0';