fix printf warning
[oweals/busybox.git] / libbb / read_package_field.c
index 867b198ba290e728eceb2afdecb673dca3b33989..4292689ca9d9681ae861ebaadae10048dba98aed 100644 (file)
@@ -2,8 +2,8 @@
 /*
  * Utility routines.
  *
- * Copyright (C) many different people.  If you wrote this, please
- * acknowledge your work.
+ * Copyright (C) many different people.
+ * If you wrote this, please acknowledge your work.
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -102,10 +102,10 @@ int read_package_field(const char *package_buffer, char **field_name, char **fie
        if (name_length == 0) {
                *field_name = NULL;
        } else {
-               *field_name = xstrndup(&package_buffer[offset_name_start], name_length);
+               *field_name = bb_xstrndup(&package_buffer[offset_name_start], name_length);
        }
        if (value_length > 0) {
-               *field_value = xstrndup(&package_buffer[offset_value_start], value_length);
+               *field_value = bb_xstrndup(&package_buffer[offset_value_start], value_length);
        } else {
                *field_value = NULL;
        }