summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2004-06-04 23:23:55 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2004-06-04 23:23:55 +0000
commitecadfaca4f5c2901bfcf7b35d860d759c0b97883 (patch)
tree0538024219720adbfa27e38ce4e5482ac876b6a7
parent7b78f5c30dacfc57516ff4af4b23e00f15a799a0 (diff)
downloadmailutils-ecadfaca4f5c2901bfcf7b35d860d759c0b97883.tar.gz
mailutils-ecadfaca4f5c2901bfcf7b35d860d759c0b97883.tar.bz2
Minor formatting fix
-rw-r--r--libsieve/extensions/spamd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/libsieve/extensions/spamd.c b/libsieve/extensions/spamd.c
index 26fa7f508..fa5fea5a6 100644
--- a/libsieve/extensions/spamd.c
+++ b/libsieve/extensions/spamd.c
@@ -1,5 +1,5 @@
/* GNU Mailutils -- a suite of utilities for electronic mail
- Copyright (C) 2003 Free Software Foundation, Inc.
+ Copyright (C) 2003, 2004 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
@@ -67,9 +67,9 @@ spamd_connect_socket (sieve_machine_t mach, stream_t *stream, char *path)
return errno;
}
- memset(&addr, 0, sizeof addr);
+ memset (&addr, 0, sizeof addr);
addr.sun_family = AF_UNIX;
- strncpy(addr.sun_path, path, sizeof addr.sun_path - 1);
+ strncpy (addr.sun_path, path, sizeof addr.sun_path - 1);
addr.sun_path[sizeof addr.sun_path - 1] = 0;
if (connect (fd, (struct sockaddr *) &addr, sizeof(addr)))
{

Return to:

Send suggestions and report system problems to the System administrator.