Commit 142fd716 authored by Romain Courteaud's avatar Romain Courteaud

Fix patch format


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40735 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent e6c0212e
diff -crB cyrus-sasl.original/include/sasl/sasl.h cyrus-sasl/include/sasl/sasl.h --- cyrus-sasl-2.1.23/include/sasl.h 2010-11-25 18:15:05.000000000 +0100
*** cyrus-sasl.original/include/sasl/sasl.h 2010-11-25 17:48:04.000000000 +0100 +++ cyrus-sasl-2.1.23/include/sasl.h 2010-11-25 18:15:34.000000000 +0100
--- cyrus-sasl/include/sasl/sasl.h 2010-11-25 17:50:40.000000000 +0100 @@ -346,7 +346,7 @@
*************** * Mechanisms must ignore callbacks with id's they don't recognize.
*** 346,352 **** */
* Mechanisms must ignore callbacks with id's they don't recognize. unsigned long id;
*/ - int (*proc)(); /* Callback function. Types of arguments vary by 'id' */
unsigned long id; + int (*proc); /* Callback function. Types of arguments vary by 'id' */
! int (*proc)(); /* Callback function. Types of arguments vary by 'id' */ void *context;
void *context; } sasl_callback_t;
} sasl_callback_t;
--- 346,352 ----
* Mechanisms must ignore callbacks with id's they don't recognize.
*/
unsigned long id;
! int (*proc); /* Callback function. Types of arguments vary by 'id' */
void *context;
} sasl_callback_t;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment