git://scientific.zcu.cz
/
jra1mw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c386f92
)
Added new call edg_wll_NotifIdDup()
author
Daniel Kouřil
<kouril@ics.muni.cz>
Mon, 14 Aug 2006 14:46:53 +0000
(14:46 +0000)
committer
Daniel Kouřil
<kouril@ics.muni.cz>
Mon, 14 Aug 2006 14:46:53 +0000
(14:46 +0000)
org.glite.lb.common/src/notifid.c
patch
|
blob
|
blame
|
history
diff --git
a/org.glite.lb.common/src/notifid.c
b/org.glite.lb.common/src/notifid.c
index
8a1d5fe
..
ee3c162
100644
(file)
--- a/
org.glite.lb.common/src/notifid.c
+++ b/
org.glite.lb.common/src/notifid.c
@@
-86,3
+86,20
@@
char* edg_wll_NotifIdGetUnique(const edg_wll_NotifId notifid)
free(id);
return NULL;
}
+
+edg_wll_NotifId *
+edg_wll_NotifIdDup(const edg_wll_NotifId src)
+{
+ char *str;
+ edg_wll_NotifId id = NULL;
+ int ret;
+
+ str = edg_wll_NotifIdUnparse(src);
+ if (str == NULL)
+ return NULL;
+
+ ret = edg_wll_NotifIdParse((const char *)str, &id);
+ free(str);
+
+ return id;
+}