diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-09-19 10:55:08 -0400 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2014-09-19 11:16:16 -0400 |
commit | 0982d037d5492895ead4deafc924a8c02d7fdbd3 (patch) | |
tree | 9890275254e6c97f48f872360e5eedfbeaa237a7 | |
parent | 54f9bfeec7e68ef4b9be4fc70f17c9b9350637b4 (diff) | |
download | nfs-utils-0982d037d5492895ead4deafc924a8c02d7fdbd3.tar.gz nfs-utils-0982d037d5492895ead4deafc924a8c02d7fdbd3.tar.xz nfs-utils-0982d037d5492895ead4deafc924a8c02d7fdbd3.zip |
nfsdcltrack: update comments in sqlite.c
Clean up and fix some inaccuracies.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | utils/nfsdcltrack/sqlite.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/utils/nfsdcltrack/sqlite.c b/utils/nfsdcltrack/sqlite.c index bac6789..352f029 100644 --- a/utils/nfsdcltrack/sqlite.c +++ b/utils/nfsdcltrack/sqlite.c @@ -21,17 +21,15 @@ * Explanation: * * This file contains the code to manage the sqlite backend database for the - * clstated upcall daemon. + * nfsdcltrack usermodehelper upcall program. * * The main database is called main.sqlite and contains the following tables: * * parameters: simple key/value pairs for storing database info * - * clients: one column containing a BLOB with the as sent by the client - * and a timestamp (in epoch seconds) of when the record was - * established - * - * FIXME: should we also record the fsid being accessed? + * clients: an "id" column containing a BLOB with the long-form clientid as + * sent by the client, a "time" column containing a timestamp (in + * epoch seconds) of when the record was last updated. */ #ifdef HAVE_CONFIG_H |