diff options
author | Russ Allbery <rra@stanford.edu> | 2007-03-09 06:23:54 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2007-03-09 06:23:54 +0000 |
commit | fd93ac889004f8aae6e9502fb39673c76adb2a0a (patch) | |
tree | afc82c079576a997c9c5cf91d3c140caea4bdc1c | |
parent | e27bf926cf8dc6b486f0e3c16f5de874fde48418 (diff) |
const is more trouble than it's worth when dealing with AFS code.
-rw-r--r-- | kasetkey/kasetkey.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kasetkey/kasetkey.c b/kasetkey/kasetkey.c index b3cf9a2..e8622d6 100644 --- a/kasetkey/kasetkey.c +++ b/kasetkey/kasetkey.c @@ -140,7 +140,7 @@ usage(int status) * local_cell if none was given. */ static void -parse_principal(struct config *config, const char *principal, char *name, +parse_principal(struct config *config, char *principal, char *name, char *inst, char *cell) { long code; |