diff options
author | Rob Austein <sra@hactrn.net> | 2009-08-31 22:24:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-08-31 22:24:48 +0000 |
commit | 1b65eb039f50792d7479cbfbd196f29ff89c7c4d (patch) | |
tree | c17808904c99f3783e4feefc39448584d2c596da /rpkid/pubd.py | |
parent | f6be347c09042f59b8042083f5009cb98496fbb7 (diff) |
Changes to support structured pubd client names.
svn path=/myrpki/myirbe.py; revision=2722
Diffstat (limited to 'rpkid/pubd.py')
-rwxr-xr-x | rpkid/pubd.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rpkid/pubd.py b/rpkid/pubd.py index e772acad..ec6f3fcf 100755 --- a/rpkid/pubd.py +++ b/rpkid/pubd.py @@ -93,7 +93,7 @@ class pubd_context(object): rpki.log.traceback() cb(500, "Unhandled exception %s" % data) - client_url_regexp = re.compile("/client/([-A-Z0-9_]+)$", re.I) + client_url_regexp = re.compile("/client/([-A-Z0-9_/]+)$", re.I) def client_handler(self, query, path, cb): """ |