Browse Source

fix of function naming

Jiri Kuthan 23 years ago
parent
commit
96bff2ed25
2 changed files with 2 additions and 2 deletions
  1. 1 1
      dset.c
  2. 1 1
      dset.h

+ 1 - 1
dset.c

@@ -88,7 +88,7 @@ int append_branch( struct sip_msg *msg, char *uri, int uri_len )
 
 
 
-char *create_dset( struct sip_msg *msg, int *len ) 
+char *print_dset( struct sip_msg *msg, int *len ) 
 {
 	int cnt;
 	str uri;

+ 1 - 1
dset.h

@@ -12,7 +12,6 @@
 #define CONTACT_DELIM ", "
 #define CONTACT_DELIM_LEN 2
 
-char *create_dset( struct sip_msg *msg, int *len );
 
 struct branch
 {
@@ -33,4 +32,5 @@ void init_branch_iterator();
 char *next_branch( int *len );
 void clear_branches();
 
+char *print_dset( struct sip_msg *msg, int *len );
 #endif