refspec: convert valid_fetch_refspec to use parse_refspec
[gitweb.git] / builtin / fast-export.c
index 530df12f05be0e3331347d0a76306d0caa394744..6f105dc7985c32a412109adb80cacb40140b74dd 100644 (file)
@@ -7,6 +7,7 @@
 #include "cache.h"
 #include "config.h"
 #include "refs.h"
+#include "refspec.h"
 #include "commit.h"
 #include "object.h"
 #include "tag.h"
@@ -35,7 +36,7 @@ static int use_done_feature;
 static int no_data;
 static int full_tree;
 static struct string_list extra_refs = STRING_LIST_INIT_NODUP;
-static struct refspec *refspecs;
+static struct refspec_item *refspecs;
 static int refspecs_nr;
 static int anonymize;
 
@@ -978,7 +979,7 @@ static void handle_deletes(void)
 {
        int i;
        for (i = 0; i < refspecs_nr; i++) {
-               struct refspec *refspec = &refspecs[i];
+               struct refspec_item *refspec = &refspecs[i];
                if (*refspec->src)
                        continue;