mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 01:31:55 +00:00
Added password_strncpy() which pads destination with zeros.
This commit is contained in:
parent
9c9e49ac39
commit
2e6197d634
@ -38,3 +38,15 @@ get_best_password(struct password_item *head, int flags)
|
|||||||
}
|
}
|
||||||
return best;
|
return best;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
password_strncpy(char *to, char *from, int len)
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
for (i=0; i<len; i++) {
|
||||||
|
*to++ = *from;
|
||||||
|
if (*from)
|
||||||
|
from++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@ -20,5 +20,7 @@ struct password_item {
|
|||||||
extern struct password_item *last_password_item;
|
extern struct password_item *last_password_item;
|
||||||
|
|
||||||
struct password_item *get_best_password(struct password_item *head, int flags);
|
struct password_item *get_best_password(struct password_item *head, int flags);
|
||||||
|
extern void password_strncpy(char *to, char *from, int len);
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user