diff options
| author | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2000-08-23 11:54:10 +0000 |
|---|---|---|
| committer | Jeroen Ruigrok van der Werven <asmodai@FreeBSD.org> | 2000-08-23 11:54:10 +0000 |
| commit | de4b2114a43e503e34fbcff350b9ad39c892d035 (patch) | |
| tree | e7932652249a5a47655c8476e6f540221dfc394a | |
| parent | 4eb207a1ae6a659fd100a6126057245aa6e73a23 (diff) | |
Notes
| -rw-r--r-- | lib/libutil/login_crypt.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/libutil/login_crypt.c b/lib/libutil/login_crypt.c index fd21c9be99c1..b291100e335d 100644 --- a/lib/libutil/login_crypt.c +++ b/lib/libutil/login_crypt.c @@ -31,6 +31,12 @@ #include <login_cap.h> #include <unistd.h> +#pragma weak crypt_set_format +int +crypt_set_format(const char *f) { + return (0); +} + const char * login_setcryptfmt(login_cap_t *lc, const char *def, const char *error) { const char *cipher; |
