From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: To: 9fans@cse.psu.edu Subject: Re: [9fans] factotum nits From: "Russ Cox" MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit Date: Tue, 12 Nov 2002 02:31:52 -0500 Topicbox-Message-UUID: 1bb76d64-eacb-11e9-9e20-41e7f4b1d025 > There's probably a good reason why this was changed, but > in earlier versions of factotum, the lines that you got > from reading /mnt/factotum/ctl could be written back to > that file with 'del' prepended to delete keys. Now there > are attributes on the end of the line like '!password?' > that cause factotum not to find the key to delete. It > would be nice if the format of 'delkey' lines written to > the control file was the same as the format of 'key' lines > read from there. done. we added the !foo? fields so that it was clear what wasn't being shown. it was unintentional that that broke the delkey property. i put in matching on private fields, so that you can delkey !password? to remove all keys with a !password field. the only pattern allowed for a private field is !private?. that is, you can't say delkey !password=my.secret since that would open up a nice dictionary attack. russ