Overview
Comment: | add missing --nocopy option to mkpw |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
61813b7d9b6e4b36ecd5315b0514af65 |
User & Date: | lexi on 2019-08-13 02:28:46 |
Other Links: | manifest | tags |
Context
2019-08-13
| ||
02:43 | fixes for script compat check-in: 2592d3e6e0 user: lexi tags: trunk | |
02:28 | add missing --nocopy option to mkpw check-in: 61813b7d9b user: lexi tags: trunk | |
2019-08-08
| ||
00:09 | fix longstanding and COMPLETELY IDIOTIC bugs in xpriv. how fucking high was i when i wrote this shit!??? check-in: 33d1991a4d user: lexi tags: trunk | |
Changes
Modified mkpw.c from [4060441d9a] to [e02ebfb705].
31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# define _cl_opt #endif #define options \ o('l',lower,mode = lower) \ o('m',mix,mode = mix) \ o('u',upper,mode = upper)\ _cl_opt enum /* constants */ { null = 0, true = 1, false = 0 }; typedef enum bad { |
> |
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# define _cl_opt
#endif
#define options \
o('l',lower,mode = lower) \
o('m',mix,mode = mix) \
o('u',upper,mode = upper)\
o('n',nocopy,copy = false)\
_cl_opt
enum /* constants */ {
null = 0, true = 1, false = 0
};
typedef enum bad {
|