]> git.ipfire.org Git - thirdparty/cups.git/commitdiff
Remove more compiler warnings.
authormike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 3 Jan 2007 15:15:27 +0000 (15:15 +0000)
committermike <mike@7a7537e8-13f0-0310-91df-b6672ffda945>
Wed, 3 Jan 2007 15:15:27 +0000 (15:15 +0000)
Fix DBUS arguments.

git-svn-id: svn+ssh://src.apple.com/svn/cups/cups.org/trunk@6175 7a7537e8-13f0-0310-91df-b6672ffda945

scheduler/auth.c
scheduler/client.c
scheduler/dirsvc.c
scheduler/ipp.c
scheduler/job.c
scheduler/main.c
scheduler/process.c
scheduler/subscriptions.c

index bcb56ed6132382bc6e02c707094d2b26b7fff0e8..a226fe0799983a53caa0666c131dd781e48a0785 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Authorization routines for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   This file contains Kerberos support code, copyright 2006 by
  *   Jelmer Vernooij.
index 81ae3c649a03bdd10427afb52f183da033196a2d..3d53a6ef9b0751c5353320b87c4c567e76c31be2 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Client routines for the Common UNIX Printing System (CUPS) scheduler.
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   This file contains Kerberos support code, copyright 2006 by
  *   Jelmer Vernooij.
index d2566dc2968b2662b14d5527e99be93aec850df1..ec5cf4d983f330867b3b9a42b9123b2a67bb74bb 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Directory services routines for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
index 0ff77b62d0187cb116ae054be4f0d6259a69e818..e654f8702c8e2886d9fa40e62c3288afaed766d2 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   IPP routines for the Common UNIX Printing System (CUPS) scheduler.
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   This file contains Kerberos support code, copyright 2006 by
  *   Jelmer Vernooij.
index 4d2215d7d61e0a0be35d2cca694dc6f1250e331f..3dab69109f4a548d536da0c3ef60c2b6f9f1c5fa 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Job management routines for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
index 9f4a6da7880258c2fb094fac23f7e6f7d47ad650..796a6001db5e21dbeb5ebff2c168078980b33fef 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Scheduler main loop for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
index 1abe18fb310ddd5600a25cc8af2cd355417f3ee3..9c25c04c8254ab167dde34c8eaab3559966002fb 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Process management routines for the Common UNIX Printing System (CUPS).
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
index be823a75c00ed184f312249b46fcded285057ef3..79de7a461d709ff8482591f17d4dbf7d5b3ac55b 100644 (file)
@@ -3,7 +3,7 @@
  *
  *   Subscription routines for the Common UNIX Printing System (CUPS) scheduler.
  *
- *   Copyright 1997-2006 by Easy Software Products, all rights reserved.
+ *   Copyright 1997-2007 by Easy Software Products, all rights reserved.
  *
  *   These coded instructions, statements, and computer programs are the
  *   property of Easy Software Products and are protected by Federal
@@ -1359,11 +1359,11 @@ cupsd_send_dbus(cupsd_eventmask_t event,/* I - Event to send */
 
   dbus_message_append_iter_init(message, &iter);
   if (dest)
-    dbus_message_iter_append_string(&iter, &(dest->name));
+    dbus_message_iter_append_string(&iter, dest->name);
   if (job)
   {
-    dbus_message_iter_append_uint32(&iter, &(job->id));
-    dbus_message_iter_append_string(&iter, &(job->username));
+    dbus_message_iter_append_uint32(&iter, job->id);
+    dbus_message_iter_append_string(&iter, job->username);
   }
 
   dbus_connection_send(con, message, NULL);