diff options
author | Rob Landley <rob@landley.net> | 2015-05-31 05:11:28 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2015-05-31 12:12:35 -0500 |
commit | f033f8607f156464747abe57487c1f6226f94001 (patch) | |
tree | a6df1d5b20e886662c29dd422fcef344f12955d5 /lib | |
parent | 42cc29c7883c852462c6c740c72eff06bca8accc (diff) | |
download | toybox-f033f8607f156464747abe57487c1f6226f94001.tar.gz |
Move the magic list of commands needing cleanup from toys/pending/README
to greppable TODO annotations in the individual files. (grep -riw TODO)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/password.c | 2 | ||||
-rw-r--r-- | lib/pending.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lib/password.c b/lib/password.c index 9654d42d..bf13c441 100644 --- a/lib/password.c +++ b/lib/password.c @@ -1,6 +1,8 @@ /* password.c - password read/update helper functions. * * Copyright 2012 Ashwini Kumar <ak.ashwini@gmail.com> + * + * TODO: cleanup */ #include "toys.h" diff --git a/lib/pending.h b/lib/pending.h index c67d81c8..ffbd0256 100644 --- a/lib/pending.h +++ b/lib/pending.h @@ -4,3 +4,5 @@ #define MAX_SALT_LEN 20 //3 for id, 16 for key, 1 for '\0' int read_password(char * buff, int buflen, char* mesg); int update_password(char *filename, char* username, char* encrypted); + +// TODO this goes away when lib/password.c cleaned up |