Hallo zusammen,

ich arbeite momentan an einer scrreprt-Vorlage unter Verwendung von scrpage2 für Kopf- und Fußzeilen und habe folgendes Problem:

Es ist zu erwarten, dass das Inhaltsverzeichnis über 2 Seiten geht. Leider wird in der Kopfzeile der zweiten Seite zwar wie gewünscht
die headsepline dargestellt, aber nicht der Text "Inhaltsverzeichnis" dargestellt. \pagestyle{empty} hat leider auch keinen Einfluss (auch die headsepline bleibt).

Code:
\documentclass[twoside,openright,a4paper,12pt,numbers=noenddot,bibliography=totoc,listof=totoc]{scrreprt}

\usepackage[english, ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[headsepline]{scrpage2}
\usepackage[inner=4cm,outer=2.5cm, bottom=4cm]{geometry}
\usepackage{lipsum}
\usepackage[bookmarksopen,colorlinks,linkcolor=black,
		citecolor=black,urlcolor=black]{hyperref}

\setheadsepline{0.5pt}[\color{black}]

\renewcommand{\chaptermark}[1]{\markboth{\chaptername \ \thechapter.\ #1}{}}
\renewcommand{\sectionmark}[1]{\markright{\thesection.\ #1}{}}

\begin{document}	
\pagestyle{scrheadings}

\pagenumbering{roman}
\tableofcontents
\newpage																					
\pagenumbering{arabic}
\setcounter{page}{1}

\chapter{Erstes Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]

\chapter{Zweites Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]

\chapter{Drittes Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]

\chapter{Viertes Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]

\chapter{Fünftes Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]

\chapter{Sechstes Kapitel}
\lipsum[1-3]
\section{A}
\lipsum[1-3]
\section{B}
\lipsum[1-5]
\section{C}
\lipsum[1-3]
\section{D}
\lipsum[1-3]
\section{E}
\lipsum[1-3]
			
\end{document}
Vielen Dank im Voraus für eure Hinweise.

Gruß,
Johnny