[BACK]Return to backup.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sbin / gpt

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sbin/gpt/backup.c between version 1.17 and 1.18

version 1.17, 2017/09/06 18:17:18 version 1.18, 2017/09/07 10:23:33
Line 231  store_tbl(gpt_t gpt, const map_t m, prop
Line 231  store_tbl(gpt_t gpt, const map_t m, prop
                 PROP_ERR(propnum);                  PROP_ERR(propnum);
                 rc = prop_dictionary_set(gpt_dict, "attributes", propnum);                  rc = prop_dictionary_set(gpt_dict, "attributes", propnum);
                 PROP_ERR(rc);                  PROP_ERR(rc);
                 utf16_to_utf8(ent->ent_name, sizeof(ent->ent_name), utfbuf,                  utf16_to_utf8(ent->ent_name, __arraycount(ent->ent_name),
                     sizeof(utfbuf));                      utfbuf, __arraycount(utfbuf));
                 if (utfbuf[0] != '\0') {                  if (utfbuf[0] != '\0') {
                         propstr = prop_string_create_cstring((char *)utfbuf);                          propstr = prop_string_create_cstring((char *)utfbuf);
                         PROP_ERR(propstr);                          PROP_ERR(propstr);

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.18

CVSweb <webmaster@jp.NetBSD.org>