diff --git a/SOURCES/sos-3.4-centos-branding.patch b/SOURCES/sos-3.4-centos-branding.patch
new file mode 100644
index 0000000..ed4e8ae
--- /dev/null
+++ b/SOURCES/sos-3.4-centos-branding.patch
@@ -0,0 +1,57 @@
+diff -uNrp sos-3.4.orig/sos/policies/redhat.py sos-3.4/sos/policies/redhat.py
+--- sos-3.4.orig/sos/policies/redhat.py	2017-08-09 22:26:42.179358997 +0000
++++ sos-3.4/sos/policies/redhat.py	2017-08-09 22:33:25.371349658 +0000
+@@ -34,9 +34,9 @@ except:
+ 
+ 
+ class RedHatPolicy(LinuxPolicy):
+-    distro = "Red Hat"
+-    vendor = "Red Hat"
+-    vendor_url = "http://www.redhat.com/"
++    distro = "CentOS"
++    vendor = "CentOS"
++    vendor_url = "http://www.centos.org/"
+     _redhat_release = '/etc/redhat-release'
+     _tmp_dir = "/var/tmp"
+     _rpmq_cmd = 'rpm -qa --queryformat "%{NAME}|%{VERSION}\\n"'
+@@ -82,9 +82,9 @@ class RedHatPolicy(LinuxPolicy):
+ 
+     @classmethod
+     def check(cls):
+-        """This method checks to see if we are running on Red Hat. It must be
++        """This method checks to see if we are running on CentOS. It must be
+         overriden by concrete subclasses to return True when running on a
+-        Fedora, RHEL or other Red Hat distribution or False otherwise."""
++        Fedora, RHEL or other CentOS distribution or False otherwise."""
+         return False
+ 
+     def _container_init(self):
+@@ -132,15 +132,15 @@ class RedHatPolicy(LinuxPolicy):
+     def get_local_name(self):
+         return self.host_name()
+ 
+-# Container environment variables on Red Hat systems.
++# Container environment variables on CentOS systems.
+ ENV_CONTAINER = 'container'
+ ENV_HOST_SYSROOT = 'HOST'
+ 
+ 
+ class RHELPolicy(RedHatPolicy):
+-    distro = "Red Hat Enterprise Linux"
+-    vendor = "Red Hat"
+-    vendor_url = "https://access.redhat.com/support/"
++    distro = "CentOS Linux"
++    vendor = "CentOS"
++    vendor_url = "https://wiki.centos.org/"
+     msg = _("""\
+ This command will collect diagnostic and configuration \
+ information from this %(distro)s system and installed \
+@@ -204,7 +204,7 @@ No changes will be made to system config
+ 
+ 
+ class RedHatAtomicPolicy(RHELPolicy):
+-    distro = "Red Hat Atomic Host"
++    distro = "CentOS Atomic Host"
+     msg = _("""\
+ This command will collect diagnostic and configuration \
+ information from this %(distro)s system.
diff --git a/SPECS/sos.spec b/SPECS/sos.spec
index 1613b1e..bb526d1 100644
--- a/SPECS/sos.spec
+++ b/SPECS/sos.spec
@@ -35,7 +35,7 @@ Patch15: sos-bz1568882-openstack-octavia-plugin.patch
 Patch16: sos-bz1580526-docker-backport.patch
 Patch17: sos-bz1580525-ovn-plugins.patch
 Patch18: sos-bz1584548-traceback-memory.patch
-Patch19: sos-centos-branding.patch
+Patch19: sos-3.4-centos-branding.patch
 
 
 %description