initrd: remove an accidental backspace

(cherry picked from commit 920e59016f)
This commit is contained in:
Lubomir Rintel 2019-07-02 09:33:20 +02:00
parent d023155894
commit c0b2950282
2 changed files with 2 additions and 2 deletions

View file

@ -66,7 +66,7 @@ output_conn (gpointer key, gpointer value, gpointer user_data)
if (!nm_utils_file_set_contents (full_filename, data, len, 0600, &error))
goto err_out;
} else
g_print ("\n*** Connection '%s' ***\n\n%s\n", basename, data);
g_print ("\n*** Connection '%s' ***\n\n%s", basename, data);
return;
err_out:

View file

@ -398,7 +398,7 @@ parse_ip (GHashTable *connections, const char *sysfs_dir, char *argument)
}
if (peer && *peer)
_LOGW (LOGD_CORE, "Ignoring peer: %s (not implemented)\b", peer);
_LOGW (LOGD_CORE, "Ignoring peer: %s (not implemented)\n", peer);
if (gateway_ip && *gateway_ip) {
int addr_family = guess_ip_address_family (gateway_ip);