summaryrefslogtreecommitdiff
path: root/algo.h
diff options
context:
space:
mode:
authorGa?l PORTAY <gael.portay@gmail.com>2015-05-02 22:37:08 +0200
committerGa?l PORTAY <gael.portay@gmail.com>2015-05-02 22:37:08 +0200
commit42e76d1a8b6740e90b3efa763fab32e87324a6a0 (patch)
tree8e85d0dd51ef8b981fd2ded8bcbc2ba292959e98 /algo.h
parent4a3a535eee8eeb99cf3100b7e3f0d04c9c5a6acf (diff)
downloaddropbear-42e76d1a8b6740e90b3efa763fab32e87324a6a0.tar.gz
Turn Algo_Type's name attribute into const char *
Diffstat (limited to 'algo.h')
-rw-r--r--algo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/algo.h b/algo.h
index 5b7b874..49c4f41 100644
--- a/algo.h
+++ b/algo.h
@@ -35,7 +35,7 @@
struct Algo_Type {
- const unsigned char *name; /* identifying name */
+ const char *name; /* identifying name */
char val; /* a value for this cipher, or -1 for invalid */
const void *data; /* algorithm specific data */
char usable; /* whether we can use this algorithm */