mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-11-06 01:40:42 +01: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;
|
||||
}
|
||||
|
||||
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;
|
||||
|
||||
struct password_item *get_best_password(struct password_item *head, int flags);
|
||||
extern void password_strncpy(char *to, char *from, int len);
|
||||
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user