aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-06-21 06:53:30 +0000
committerWerner Koch <[email protected]>2004-06-21 06:53:30 +0000
commit8b3cf19e24f19f544558f4b9374af1cda339e308 (patch)
tree3f8d66149dd3d2061a9f1613f5c690e0b12db2ab
parent2004-06-20 Moritz Schulte <[email protected]> (diff)
downloadgnupg-8b3cf19e24f19f544558f4b9374af1cda339e308.tar.gz
gnupg-8b3cf19e24f19f544558f4b9374af1cda339e308.zip
* sc-investigate.c (my_read_line): Renamed from read_line.
-rw-r--r--scd/ChangeLog4
-rw-r--r--scd/sc-investigate.c4
2 files changed, 6 insertions, 2 deletions
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 <[email protected]>
+
+ * sc-investigate.c (my_read_line): Renamed from read_line.
+
2004-06-16 Werner Koch <[email protected]>
* 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 == '#' );