diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-04-19 22:23:32 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-04-19 22:23:32 +0000 |
commit | 66bcd1ef6c527e9e84c8e9f85a73aa4e24777466 (patch) | |
tree | 6ca8ab762bd9706f457cad48eb9ddc3be950c507 /security/pks/files/patch-an | |
parent | Update to 0.85. (diff) |
Patches from maintainer:
* HKP (WWW) key submissions disabled by default, enabled via
configuration file
* nicer formatting of long (SHA-1) fingerprints
* pksdctl usage() shows available commands/arguments
* manual page fixes
Bump PORTREVISION.
PR: ports/34970
Submitted by: Jason Harris <jharris@widomaker.com>
Diffstat (limited to 'security/pks/files/patch-an')
-rw-r--r-- | security/pks/files/patch-an | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/security/pks/files/patch-an b/security/pks/files/patch-an new file mode 100644 index 000000000000..abd1aff0976e --- /dev/null +++ b/security/pks/files/patch-an @@ -0,0 +1,32 @@ +=================================================================== +RCS file: pks_config.c,v +retrieving revision 1.13 +diff -u -r1.13 pks_config.c +--- pks_config.c 1999/05/20 03:39:51 1.13 ++++ pks_config.c 2001/09/02 04:05:57 +@@ -20,6 +20,7 @@ + const pks_config default_config = { + "/var/spool/pks/etc/db", + 0, ++ 1, + "/var/spool/pks/pksd_socket", + "", + "root", +@@ -40,6 +41,9 @@ + const char www_port_str[] = "www_port"; + long www_port_len = sizeof(www_port_str)-1; + ++const char www_readonly_str[] = "www_readonly"; ++long www_readonly_len = sizeof(www_readonly_str)-1; ++ + const char sockname_str[] = "socket_name"; + long sockname_len = sizeof(sockname_str)-1; + +@@ -147,6 +151,7 @@ + + if (str_conf(db_dir_str, db_dir_len, pc->db_dir)) + else if (num_conf(www_port_str, www_port_len, pc->www_port)) ++ else if (num_conf(www_readonly_str, www_readonly_len, pc->www_readonly)) + else if (str_conf(sockname_str, sockname_len, pc->socket_name)) + else if (str_conf(mdc_str, mdc_len, pc->mail_delivery_client)) + else if (str_conf(maint_str, maint_len, pc->maintainer_email)) |