diff options
| author | Michael Biebl <biebl@debian.org> | 2012-06-29 20:23:49 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2012-06-29 20:23:49 +0200 |
| commit | 038b9f5fcfedd9c117fc69f164e5b1c04efb0aca (patch) | |
| tree | 7ae78f00ab213935e0228160c8eafd1d18409741 /debian/patches/10-format-security.patch | |
| parent | 07c27d7af60c699c93e47e83582b5b0369049c54 (diff) | |
Update patches.
* debian/patches/02-dbus_access_network_manager.patch: Updated. * Remove patches which have been merged upstream.
Diffstat (limited to 'debian/patches/10-format-security.patch')
| -rw-r--r-- | debian/patches/10-format-security.patch | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/debian/patches/10-format-security.patch b/debian/patches/10-format-security.patch deleted file mode 100644 index 84e50288..00000000 --- a/debian/patches/10-format-security.patch +++ /dev/null @@ -1,21 +0,0 @@ -Description: Fix a format string vulnerability -Author: Michael Biebl <biebl@debian.org> -diff --git a/libnm-util/nm-setting-bond.c b/libnm-util/nm-setting-bond.c -index 9f9f438..fe874ab 100644 ---- a/libnm-util/nm-setting-bond.c -+++ b/libnm-util/nm-setting-bond.c -@@ -402,10 +402,10 @@ verify (NMSetting *setting, GSList *all_settings, GError **error) - || !value[0] - || (strlen (value) > 200) - || strchr (value, ' ')) { -- g_set_error (error, -- NM_SETTING_BOND_ERROR, -- NM_SETTING_BOND_ERROR_INVALID_OPTION, -- key); -+ g_set_error_literal (error, -+ NM_SETTING_BOND_ERROR, -+ NM_SETTING_BOND_ERROR_INVALID_OPTION, -+ key); - return FALSE; - } - } |