e5e9e3b
diff -up cups-1.4.8/notifier/dbus.c.str3947 cups-1.4.8/notifier/dbus.c
e5e9e3b
--- cups-1.4.8/notifier/dbus.c.str3947	2011-03-04 19:28:38.000000000 +0000
e5e9e3b
+++ cups-1.4.8/notifier/dbus.c	2011-09-28 10:37:30.443753266 +0100
e5e9e3b
@@ -4,7 +4,7 @@
e5e9e3b
  *   D-Bus notifier for the Common UNIX Printing System (CUPS).
e5e9e3b
  *
e5e9e3b
  *   Copyright 2008 by Apple Inc.
e5e9e3b
- *   Copyright (C) 2007 Red Hat, Inc.
e5e9e3b
+ *   Copyright (C) 2011 Red Hat, Inc.
e5e9e3b
  *   Copyright (C) 2007 Tim Waugh <twaugh@redhat.com>
e5e9e3b
  *   Copyright 1997-2005 by Easy Software Products.
e5e9e3b
  *
e5e9e3b
@@ -423,10 +423,11 @@ main(int  argc,				/* I - Number of comm
e5e9e3b
 	  p = printer_reasons;
e5e9e3b
 	  for (i = 0; i < attr->num_values; i++)
e5e9e3b
 	  {
e5e9e3b
-	    strcpy(p, attr->values[i].string.text);
e5e9e3b
-	    p += strlen(p);
e5e9e3b
 	    if (i)
e5e9e3b
 	      *p++ = ',';
e5e9e3b
+
e5e9e3b
+	    strcpy(p, attr->values[i].string.text);
e5e9e3b
+	    p += strlen(p);
e5e9e3b
 	  }
e5e9e3b
 	  dbus_message_iter_append_string(&iter, &printer_reasons);
e5e9e3b
 	}