diff options
author | David Shaw <[email protected]> | 2004-10-11 20:33:22 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-10-11 20:33:22 +0000 |
commit | e3fd0f0c6000ce3ab095ed84707434ece4852c2d (patch) | |
tree | 3078dbffab0d51f5923f59f0806c92a7ca557877 /keyserver/gpgkeys_ldap.c | |
parent | Oops commited binary instead of source. (diff) | |
download | gnupg-e3fd0f0c6000ce3ab095ed84707434ece4852c2d.tar.gz gnupg-e3fd0f0c6000ce3ab095ed84707434ece4852c2d.zip |
* gpgkeys_finger.c, gpgkeys_hkp.c, gpgkeys_http.c, gpgkeys_ldap.c: Fix a
few occurances of "filename" to `filename'.
Diffstat (limited to '')
-rw-r--r-- | keyserver/gpgkeys_ldap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyserver/gpgkeys_ldap.c b/keyserver/gpgkeys_ldap.c index e8fdc53ad..c8d0ca6d3 100644 --- a/keyserver/gpgkeys_ldap.c +++ b/keyserver/gpgkeys_ldap.c @@ -1559,7 +1559,7 @@ main(int argc,char *argv[]) output=fopen(optarg,"w"); if(output==NULL) { - fprintf(console,"gpgkeys: Cannot open output file \"%s\": %s\n", + fprintf(console,"gpgkeys: Cannot open output file `%s': %s\n", optarg,strerror(errno)); return KEYSERVER_INTERNAL_ERROR; } @@ -1572,7 +1572,7 @@ main(int argc,char *argv[]) input=fopen(argv[optind],"r"); if(input==NULL) { - fprintf(console,"gpgkeys: Cannot open input file \"%s\": %s\n", + fprintf(console,"gpgkeys: Cannot open input file `%s': %s\n", argv[optind],strerror(errno)); return KEYSERVER_INTERNAL_ERROR; } |