summaryrefslogtreecommitdiffstats
path: root/tools/watchgnupg.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2005-06-16 10:12:03 +0200
committerWerner Koch <wk@gnupg.org>2005-06-16 10:12:03 +0200
commitdeeba405a9a5868ea478db5003be6335ab9aac6f (patch)
treed61d720258fd571ec81a3d3e5d776320b7b1d796 /tools/watchgnupg.c
parentNew debugging optionhs, updates to the manual. (diff)
downloadgnupg2-deeba405a9a5868ea478db5003be6335ab9aac6f.tar.xz
gnupg2-deeba405a9a5868ea478db5003be6335ab9aac6f.zip
gcc-4 defaults forced me to edit many many files to get rid of the
char * vs. unsigned char * warnings. The GNU coding standards used to say that these mismatches are okay and better than a bunch of casts. Obviously this has changed now.
Diffstat (limited to 'tools/watchgnupg.c')
-rw-r--r--tools/watchgnupg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/watchgnupg.c b/tools/watchgnupg.c
index 25ca8c413..6cb570fbc 100644
--- a/tools/watchgnupg.c
+++ b/tools/watchgnupg.c
@@ -223,7 +223,7 @@ main (int argc, char **argv)
int force = 0;
struct sockaddr_un srvr_addr;
- int addrlen;
+ socklen_t addrlen;
int server;
int flags;
client_t client_list = NULL;