diff options
author | Werner Koch <[email protected]> | 2004-06-21 06:53:30 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-06-21 06:53:30 +0000 |
commit | 8b3cf19e24f19f544558f4b9374af1cda339e308 (patch) | |
tree | 3f8d66149dd3d2061a9f1613f5c690e0b12db2ab /scd/sc-investigate.c | |
parent | 2004-06-20 Moritz Schulte <[email protected]> (diff) | |
download | gnupg-8b3cf19e24f19f544558f4b9374af1cda339e308.tar.gz gnupg-8b3cf19e24f19f544558f4b9374af1cda339e308.zip |
* sc-investigate.c (my_read_line): Renamed from read_line.
Diffstat (limited to 'scd/sc-investigate.c')
-rw-r--r-- | scd/sc-investigate.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 == '#' ); |