summaryrefslogtreecommitdiff
path: root/src/stroke/stroke.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stroke/stroke.c')
-rw-r--r--src/stroke/stroke.c17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/stroke/stroke.c b/src/stroke/stroke.c
index 4d1b8e7db..2c5a03d77 100644
--- a/src/stroke/stroke.c
+++ b/src/stroke/stroke.c
@@ -197,8 +197,6 @@ static int terminate_connection_srcip(char *start, char *end)
return send_stroke_msg(&msg);
}
-<<<<<<< HEAD
-=======
static int rekey_connection(char *name)
{
stroke_msg_t msg;
@@ -209,7 +207,6 @@ static int rekey_connection(char *name)
return send_stroke_msg(&msg);
}
->>>>>>> upstream/4.5.1
static int route_connection(char *name)
{
stroke_msg_t msg;
@@ -288,12 +285,9 @@ static int reread(stroke_keyword_t kw)
static int purge_flags[] = {
PURGE_OCSP,
- PURGE_IKE,
-<<<<<<< HEAD
-=======
PURGE_CRLS,
PURGE_CERTS,
->>>>>>> upstream/4.5.1
+ PURGE_IKE,
};
static int purge(stroke_keyword_t kw)
@@ -391,13 +385,10 @@ static void exit_usage(char *error)
printf(" stroke rereadsecrets|rereadcrls|rereadall\n");
printf(" Purge ocsp cache entries:\n");
printf(" stroke purgeocsp\n");
-<<<<<<< HEAD
-=======
printf(" Purge CRL cache entries:\n");
printf(" stroke purgecrls\n");
printf(" Purge X509 cache entries:\n");
printf(" stroke purgecerts\n");
->>>>>>> upstream/4.5.1
printf(" Purge IKE_SAs without a CHILD_SA:\n");
printf(" stroke purgeike\n");
printf(" Export credentials to the console:\n");
@@ -468,8 +459,6 @@ int main(int argc, char *argv[])
}
res = terminate_connection_srcip(argv[2], argc > 3 ? argv[3] : NULL);
break;
-<<<<<<< HEAD
-=======
case STROKE_REKEY:
if (argc < 3)
{
@@ -477,7 +466,6 @@ int main(int argc, char *argv[])
}
res = rekey_connection(argv[2]);
break;
->>>>>>> upstream/4.5.1
case STROKE_ROUTE:
if (argc < 3)
{
@@ -526,11 +514,8 @@ int main(int argc, char *argv[])
res = reread(token->kw);
break;
case STROKE_PURGE_OCSP:
-<<<<<<< HEAD
-=======
case STROKE_PURGE_CRLS:
case STROKE_PURGE_CERTS:
->>>>>>> upstream/4.5.1
case STROKE_PURGE_IKE:
res = purge(token->kw);
break;