Replace stpcpy with grub_stpcpy in tools.
This commit is contained in:
parent
bbdd6305db
commit
ba44ca6d1a
4 changed files with 10 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Replace stpcpy with grub_stpcpy in tools.
|
||||
|
||||
2013-04-12 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
Handle Japanese special keys.
|
||||
|
|
|
@ -667,14 +667,14 @@ grub_find_root_devices_from_mountinfo (const char *dir, char **relroot)
|
|||
char *ptr;
|
||||
*relroot = xmalloc (strlen (entries[i].enc_root) +
|
||||
2 + strlen (dir));
|
||||
ptr = stpcpy (*relroot, entries[i].enc_root);
|
||||
ptr = grub_stpcpy (*relroot, entries[i].enc_root);
|
||||
if (strlen (dir) > strlen (entries[i].enc_path))
|
||||
{
|
||||
while (ptr > *relroot && *(ptr - 1) == '/')
|
||||
ptr--;
|
||||
if (dir[strlen (entries[i].enc_path)] != '/')
|
||||
*ptr++ = '/';
|
||||
ptr = stpcpy (ptr, dir + strlen (entries[i].enc_path));
|
||||
ptr = grub_stpcpy (ptr, dir + strlen (entries[i].enc_path));
|
||||
}
|
||||
*ptr = 0;
|
||||
}
|
||||
|
|
|
@ -289,10 +289,10 @@ cmd_cmp (char *src, char *dest)
|
|||
+ strlen (entry->d_name));
|
||||
destnew = xmalloc (strlen (dest) + sizeof ("/")
|
||||
+ strlen (entry->d_name));
|
||||
ptr = stpcpy (srcnew, src);
|
||||
ptr = grub_stpcpy (srcnew, src);
|
||||
*ptr++ = '/';
|
||||
strcpy (ptr, entry->d_name);
|
||||
ptr = stpcpy (destnew, dest);
|
||||
ptr = grub_stpcpy (destnew, dest);
|
||||
*ptr++ = '/';
|
||||
strcpy (ptr, entry->d_name);
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue