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 <johannes.sixt@telecom.at>
This commit is contained in:
Johannes Sixt
2008-06-23 10:57:56 +02:00
parent ab87ad4c62
commit b0115de333

View File

@@ -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;