summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2001-10-10 09:28:34 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2001-10-10 09:28:34 +0000
commit01f2ebc48ad96b8879ac101fe59e4374268a4567 (patch)
treec7c873501f285ad4247aebdd4d1b7b0e773b5d85
parentad3fc4e173fc30561bcb669f19831594592feaff (diff)
downloadgnutls-01f2ebc48ad96b8879ac101fe59e4374268a4567.tar.gz
renamed crypt to srpcrypt.
-rw-r--r--src/Makefile.am6
-rw-r--r--src/crypt-gaa.c2
-rw-r--r--src/crypt.gaa2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7811453e6b..cbb75e3988 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -4,11 +4,11 @@ SUBDIRS = srp x509
INCLUDES = -I../lib
-noinst_PROGRAMS = serv cli crypt prime asn1c CertificateExample CrlExample
+noinst_PROGRAMS = serv cli srpcrypt prime asn1c CertificateExample CrlExample
serv_SOURCES = serv.c
serv_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS)
-crypt_SOURCES = crypt-gaa.c crypt.c
-crypt_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS)
+srpcrypt_SOURCES = crypt-gaa.c crypt.c
+srpcrypt_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS)
prime_SOURCES = prime-gaa.c prime.c
prime_LDADD = ../lib/libgnutls.la $(LIBGCRYPT_LIBS)
cli_SOURCES = cli.c
diff --git a/src/crypt-gaa.c b/src/crypt-gaa.c
index 8046d4e819..78e3a419e6 100644
--- a/src/crypt-gaa.c
+++ b/src/crypt-gaa.c
@@ -102,7 +102,7 @@ void __gaa_helpsingle(char short_name, char *name,
void gaa_help()
{
- printf("Crypt help\nUsage : crypt [options]""\n");
+ printf("Srpcrypt help\nUsage : srpcrypt [options]""\n");
__gaa_helpsingle('u', "username", """username"" ", "specify username.");
__gaa_helpsingle('p', "passwd", """FILE"" ", "specify a password file.");
__gaa_helpsingle('i', "index", """INDEX"" ", "specify the index of the parameters in tpasswd.conf to use.");
diff --git a/src/crypt.gaa b/src/crypt.gaa
index 98d9a9656d..fc5b5e0dbd 100644
--- a/src/crypt.gaa
+++ b/src/crypt.gaa
@@ -1,4 +1,4 @@
-helpnode "Crypt help\nUsage : crypt [options]"
+helpnode "Srpcrypt help\nUsage : srpcrypt [options]"
#char *username;
option (u,username) STR "username" { $username = $1 } "specify username."