Overview
Comment: | fixes for script compat |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
2592d3e6e045f05d9d37e4b6f0b83733 |
User & Date: | lexi on 2019-08-13 02:43:46 |
Other Links: | manifest | tags |
Context
2019-08-15
| ||
05:45 | add kpw source check-in: a3ccd193d5 user: lexi tags: trunk | |
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 | |
Changes
Modified mkpw.c from [e02ebfb705] to [d671829e71].
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
#ifdef _CLIPBOARD
# include <sys/types.h>
# include <pwd.h>
# include <stdlib.h>
# define _cl_opt o('n',nocopy,copy = false)
#else
# 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 {
|
| < |
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
#ifdef _CLIPBOARD
# include <sys/types.h>
# include <pwd.h>
# include <stdlib.h>
# define _cl_opt o('n',nocopy,copy = false)
#else
# define _cl_opt o('n',nocopy,/* do nothing*/)
#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 {
|