gsasl-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

CVS gsasl/lib/src


From: gsasl-commit
Subject: CVS gsasl/lib/src
Date: Sun, 31 Oct 2004 20:37:36 +0100

Update of /home/cvs/gsasl/lib/src
In directory dopio:/tmp/cvs-serv13295/lib/src

Modified Files:
        gsasl.h.in property.c 
Log Message:
Rename gsasl_property_lset to gsasl_property_set_raw.


--- /home/cvs/gsasl/lib/src/gsasl.h.in  2004/10/31 19:28:47     1.42
+++ /home/cvs/gsasl/lib/src/gsasl.h.in  2004/10/31 19:37:36     1.43
@@ -181,7 +181,7 @@
   /* Property handling: property.c */
   extern void gsasl_property_set (Gsasl_session * sctx, Gsasl_property prop,
                                  const char *data);
-  extern void gsasl_property_lset (Gsasl_session * sctx, Gsasl_property prop,
+  extern void gsasl_property_set_raw (Gsasl_session * sctx, Gsasl_property 
prop,
                                   const char *data, size_t len);
   extern void gsasl_property_set_global (Gsasl * ctx, Gsasl_property prop,
                                         const char *data);
--- /home/cvs/gsasl/lib/src/property.c  2004/10/31 15:26:46     1.15
+++ /home/cvs/gsasl/lib/src/property.c  2004/10/31 19:37:36     1.16
@@ -156,11 +156,11 @@
 gsasl_property_set (Gsasl_session * sctx, Gsasl_property prop,
                    const char *data)
 {
-  gsasl_property_lset (sctx, prop, data, data ? strlen (data) : 0);
+  gsasl_property_set_raw (sctx, prop, data, data ? strlen (data) : 0);
 }
 
 /**
- * gsasl_property_lset:
+ * gsasl_property_set_raw:
  * @sctx: session handle.
  * @prop: enumerated value of Gsasl_property type, indicating the
  *        type of data in @data.
@@ -178,7 +178,7 @@
  * Since: 0.2.0
  **/
 void
-gsasl_property_lset (Gsasl_session * sctx, Gsasl_property prop,
+gsasl_property_set_raw (Gsasl_session * sctx, Gsasl_property prop,
                     const char *data, size_t len)
 {
   char **p = map (sctx, prop);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]