aboutsummaryrefslogtreecommitdiffstats
path: root/keyserver/gpgkeys_http.c
diff options
context:
space:
mode:
authorDavid Shaw <[email protected]>2004-10-11 20:33:22 +0000
committerDavid Shaw <[email protected]>2004-10-11 20:33:22 +0000
commite3fd0f0c6000ce3ab095ed84707434ece4852c2d (patch)
tree3078dbffab0d51f5923f59f0806c92a7ca557877 /keyserver/gpgkeys_http.c
parentOops commited binary instead of source. (diff)
downloadgnupg-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_http.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyserver/gpgkeys_http.c b/keyserver/gpgkeys_http.c
index e61351ec8..6eabdcff4 100644
--- a/keyserver/gpgkeys_http.c
+++ b/keyserver/gpgkeys_http.c
@@ -149,7 +149,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;
}
@@ -162,7 +162,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;
}