diff --git a/scd/ChangeLog b/scd/ChangeLog
index e04575c75..b06c692f5 100644
--- a/scd/ChangeLog
+++ b/scd/ChangeLog
@@ -1,3 +1,7 @@
+2004-06-18  Werner Koch  <wk@g10code.com>
+
+	* sc-investigate.c (my_read_line): Renamed from read_line.
+
 2004-06-16  Werner Koch  <wk@gnupg.org>
 
 	* apdu.c (osc_get_status): Fixed type in function name. Noted by
diff --git a/scd/sc-investigate.c b/scd/sc-investigate.c
index 3882e1dfd..229def535 100644
--- a/scd/sc-investigate.c
+++ b/scd/sc-investigate.c
@@ -362,7 +362,7 @@ pin_to_buffer (const char *string, size_t *r_length)
 
 
 static char *
-read_line (int use_readline, char *prompt)
+my_read_line (int use_readline, char *prompt)
 {
   static char buf[256];
 
@@ -470,7 +470,7 @@ interactive_shell (int slot)
       printf ("\n");
       do
         {
-          line = read_line (use_readline, "cmd> ");
+          line = my_read_line (use_readline, "cmd> ");
 	}
       while ( line && *line == '#' );