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_finger.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 'keyserver/gpgkeys_finger.c')
| -rw-r--r-- | keyserver/gpgkeys_finger.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyserver/gpgkeys_finger.c b/keyserver/gpgkeys_finger.c index 967fa8176..d0755edaa 100644 --- a/keyserver/gpgkeys_finger.c +++ b/keyserver/gpgkeys_finger.c @@ -385,7 +385,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; } @@ -398,7 +398,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; } |
