From b0115de33336cda96cb3c0637a7985c7c5b436ac Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Mon, 23 Jun 2008 10:57:56 +0200 Subject: [PATCH] Remove a 'break' that was accidentally left over The conversion of the 'switch' statement to an 'if' cascade forgot to remove the break. Signed-off-by: Johannes Sixt --- setup.c | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.c b/setup.c index ec33147ad8..8bb7b10174 100644 --- a/setup.c +++ b/setup.c @@ -35,7 +35,6 @@ static int sanitary_path_copy(char *dst, const char *src) if (!src[1]) { /* (1) */ src++; - break; } else if (is_dir_sep(src[1])) { /* (2) */ src += 2;