mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

88 lines
2.6 KiB

  1. --- soup-0.7.11/src/libwsdl/wsdl-typecodes.c.orig 2004-07-20 03:05:20.881937824 +0200
  2. +++ soup-0.7.11/src/libwsdl/wsdl-typecodes.c 2004-07-20 03:12:25.701355456 +0200
  3. @@ -977,7 +977,7 @@
  4. {
  5. switch (tc->kind) {
  6. case WSDL_TK_GLIB_NULL:
  7. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  8. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  9. return (0);
  10. break;
  11. @@ -1082,7 +1082,7 @@
  12. break;
  13. case WSDL_TK_GLIB_MAX:
  14. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  15. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  16. return (0);
  17. break;
  18. }
  19. @@ -1106,7 +1106,7 @@
  20. {
  21. switch (tc->kind) {
  22. case WSDL_TK_GLIB_NULL:
  23. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  24. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  25. return (0);
  26. break;
  27. @@ -1218,7 +1218,7 @@
  28. break;
  29. case WSDL_TK_GLIB_MAX:
  30. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  31. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  32. return (0);
  33. break;
  34. }
  35. --- soup-0.7.11/src/libwsdl/wsdl-soap-parse.c.orig 2004-07-20 03:14:47.284831496 +0200
  36. +++ soup-0.7.11/src/libwsdl/wsdl-soap-parse.c 2004-07-20 03:15:21.280663344 +0200
  37. @@ -37,7 +37,7 @@
  38. switch (wsdl_typecode_kind (typecode)) {
  39. case WSDL_TK_GLIB_NULL:
  40. - g_warning ("Invalid typecode NULL in " G_GNUC_FUNCTION);
  41. + g_warning ("Invalid typecode NULL in %s", G_GNUC_FUNCTION);
  42. break;
  43. case WSDL_TK_GLIB_VOID:
  44. @@ -203,7 +203,7 @@
  45. /* Handled elsewhere */
  46. break;
  47. case WSDL_TK_GLIB_MAX:
  48. - g_warning ("Invalid typecode MAX in " G_GNUC_FUNCTION);
  49. + g_warning ("Invalid typecode MAX in %s", G_GNUC_FUNCTION);
  50. break;
  51. }
  52. }
  53. --- soup-0.7.11/src/libwsdl/wsdl-soap-memory.c.orig 2004-07-20 03:17:21.060454048 +0200
  54. +++ soup-0.7.11/src/libwsdl/wsdl-soap-memory.c 2004-07-20 03:18:18.200767400 +0200
  55. @@ -33,14 +33,12 @@
  56. while (param->name != NULL) {
  57. if (param->typecode == NULL) {
  58. - g_warning (G_GNUC_FUNCTION
  59. - ": Parameter %s has no typecode!",
  60. + g_warning ("%s: Parameter %s has no typecode!", G_GNUC_FUNCTION,
  61. param->name);
  62. } else {
  63. if (param->param == NULL) {
  64. - g_warning (G_GNUC_FUNCTION
  65. - ": Parameter %s has no "
  66. - "memory location!",
  67. + g_warning ("%s: Parameter %s has no "
  68. + "memory location!", G_GNUC_FUNCTION,
  69. param->name);
  70. } else {
  71. memset (param->param,
  72. @@ -71,8 +69,7 @@
  73. while (param->name != NULL) {
  74. if (param->typecode == NULL) {
  75. - g_warning (G_GNUC_FUNCTION
  76. - ": Parameter %s has no typecode!",
  77. + g_warning ("%s: Parameter %s has no typecode!", G_GNUC_FUNCTION,
  78. param->name);
  79. } else {
  80. if (param->param != NULL &&