Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
0d301b69
Commit
0d301b69
authored
Apr 28, 2009
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix bad type for date element
parent
66614dd5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
plist.c
src/plist.c
+1
-1
No files found.
src/plist.c
View file @
0d301b69
...
@@ -368,7 +368,7 @@ void plist_add_sub_unicode_el(plist_t node, const char *val)
...
@@ -368,7 +368,7 @@ void plist_add_sub_unicode_el(plist_t node, const char *val)
void
plist_add_sub_date_el
(
plist_t
node
,
int32_t
sec
,
int32_t
usec
)
void
plist_add_sub_date_el
(
plist_t
node
,
int32_t
sec
,
int32_t
usec
)
{
{
GTimeVal
val
=
{
sec
,
usec
};
GTimeVal
val
=
{
sec
,
usec
};
plist_add_sub_element
(
node
,
PLIST_
UNICOD
E
,
&
val
,
sizeof
(
GTimeVal
));
plist_add_sub_element
(
node
,
PLIST_
DAT
E
,
&
val
,
sizeof
(
GTimeVal
));
}
}
void
plist_get_key_val
(
plist_t
node
,
char
**
val
)
void
plist_get_key_val
(
plist_t
node
,
char
**
val
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment