about summary refs log tree commit diff
path: root/debian/patches/05-debian_backend.patch
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2007-08-26 18:55:09 +0000
committerMichael Biebl <biebl@debian.org>2007-08-26 18:55:09 +0000
commit5b85762af7b4dd320c5b526a69dba9b9f380e285 (patch)
treee2add2faacb7681c9ec20a70fce0c1c5fc072c4d /debian/patches/05-debian_backend.patch
parent3d4e2b16578e14f89bb5f839904ccd756a06da73 (diff)
* Rebased and updated patches for new release
  - debian/patches/11-man_page_sh_name.patch
  - debian/patches/05-debian_backend.patch

git-svn-id: svn+ssh://svn.debian.org/svn/pkg-utopia/packages/unstable/networkmanager@1674 ceb527fc-18e6-0310-9fe2-813c157c29e7
Diffstat (limited to 'debian/patches/05-debian_backend.patch')
-rw-r--r--debian/patches/05-debian_backend.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/patches/05-debian_backend.patch b/debian/patches/05-debian_backend.patch
index b8967be7..931a2063 100644
--- a/debian/patches/05-debian_backend.patch
+++ b/debian/patches/05-debian_backend.patch
@@ -211,21 +211,6 @@ diff --git a/src/backends/interface_parser.c b/src/backends/interface_parser.c
 index 53d6487..b3ad300 100644
 --- a/src/backends/interface_parser.c
 +++ b/src/backends/interface_parser.c
-@@ -50,11 +50,13 @@ void add_block(const char *type, const char* name)
- 
- void add_data(const char *key,const char *data)
- {
-+	if_data *ret;
-+
- 	// Check if there is a block where we can attach our data
- 	if (first == NULL)
- 		return;
- 			
--	if_data *ret = (if_data*)calloc(1,sizeof(struct _if_data));
-+	ret = (if_data*) calloc(1,sizeof(struct _if_data));
- 	ret->key = g_strdup(key);
- 	ret->data = g_strdup(data);
- 	
 @@ -71,14 +73,18 @@ void add_data(const char *key,const char *data)
  	//printf("added data '%s' with key '%s'\n",data,key);
  }