Replace stpcpy with grub_stpcpy in tools.

This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-04-12 22:37:59 +02:00
parent bbdd6305db
commit ba44ca6d1a
4 changed files with 10 additions and 6 deletions

View file

@ -499,7 +499,7 @@ probe (const char *path, char **device_names, char delim)
{
char *tmp = xmalloc (strlen (ofpath) + sizeof ("ieee1275/"));
char *p;
p = stpcpy (tmp, "ieee1275/");
p = grub_stpcpy (tmp, "ieee1275/");
strcpy (p, ofpath);
printf ("--hint-ieee1275='");
print_full_name (tmp, dev);
@ -616,7 +616,7 @@ probe (const char *path, char **device_names, char delim)
{
char *tmp = xmalloc (strlen (ofpath) + sizeof ("ieee1275/"));
char *p;
p = stpcpy (tmp, "ieee1275/");
p = grub_stpcpy (tmp, "ieee1275/");
strcpy (p, ofpath);
print_full_name (tmp, dev);
free (tmp);