summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2022-12-13 08:37:29 +0100
committerThomas Haller <thaller@redhat.com>2022-12-19 11:29:11 +0100
commit191a1c74bf19cd00c7f630a0bcdd47a15ad68829 (patch)
treeb4b2165fd12cebf3644b5e555910af9f6cdc8616
parent37ee8ee097ebdb16168fe5e0bdbc69c2ddbd102d (diff)
downloadNetworkManager-191a1c74bf19cd00c7f630a0bcdd47a15ad68829.tar.gz
core/trivial: fix indentation
-rw-r--r--src/core/dhcp/nm-dhcp-client.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/core/dhcp/nm-dhcp-client.c b/src/core/dhcp/nm-dhcp-client.c
index 88548b122a..72ad661aa0 100644
--- a/src/core/dhcp/nm-dhcp-client.c
+++ b/src/core/dhcp/nm-dhcp-client.c
@@ -1525,20 +1525,20 @@ maybe_add_option(NMDhcpClient *self, GHashTable *hash, const char *key, GVariant
g_hash_table_insert(hash, g_strdup(key), str_value);
/* dhclient has no special labels for private dhcp options: it uses "unknown_xyz"
- * labels for that. We need to identify those to alias them to our "private_xyz"
- * format unused in the internal dchp plugins.
- */
+ * labels for that. We need to identify those to alias them to our "private_xyz"
+ * format unused in the internal dchp plugins.
+ */
if ((priv_opt_num = label_is_unknown_xyz(key)) > 0) {
gs_free guint8 *check_val = NULL;
char *hex_str = NULL;
gsize len;
/* dhclient passes values from dhcp private options in its own "string" format:
- * if the raw values are printable as ascii strings, it will pass the string
- * representation; if the values are not printable as an ascii string, it will
- * pass a string displaying the hex values (hex string). Try to enforce passing
- * always an hex string, converting string representation if needed.
- */
+ * if the raw values are printable as ascii strings, it will pass the string
+ * representation; if the values are not printable as an ascii string, it will
+ * pass a string displaying the hex values (hex string). Try to enforce passing
+ * always an hex string, converting string representation if needed.
+ */
check_val = nm_utils_hexstr2bin_alloc(str_value, FALSE, TRUE, ":", 0, &len);
hex_str = nm_utils_bin2hexstr_full(check_val ?: (guint8 *) str_value,
check_val ? len : strlen(str_value),