replace SKIPWS with a proper inline func with the right API.
[apps/madmutt.git] / from.c
diff --git a/from.c b/from.c
index 87c44a0..64686fc 100644 (file)
--- a/from.c
+++ b/from.c
 #include <ctype.h>
 #include <string.h>
 
-static const char *next_word (const char *s)
+static const char *next_word(const char *s)
 {
-  while (*s && !ISSPACE (*s))
-    s++;
-  SKIPWS (s);
-  return s;
+    while (*s && !ISSPACE(*s))
+        s++;
+    s = skipspaces(s);
+    return s;
 }
 
 int mutt_check_month (const char *s)
@@ -102,8 +102,7 @@ int is_from (const char *s, char *path, size_t pathlen, time_t * tp)
       debug_print (3, ("got return path: %s\n", path));
     }
 
-    s = p + 1;
-    SKIPWS (s);
+    s = vskipspaces(p + 1);
     if (!*s)
       return 0;