Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
2a2966aa
Commit
2a2966aa
authored
Oct 11, 2002
by
Kurt Zeilenga
Browse files
fix snprintf result handling
parent
c917024f
Changes
1
Hide whitespace changes
Inline
Side-by-side
libraries/liblutil/uuid.c
View file @
2a2966aa
...
...
@@ -273,7 +273,7 @@ lutil_uuidstr( char *buf, size_t len )
(
unsigned
)
nl
[
2
],
(
unsigned
)
nl
[
3
],
(
unsigned
)
nl
[
4
],
(
unsigned
)
nl
[
5
]
);
return
(
t1
<
len
)
?
t1
:
0
;
return
(
0
<
t1
&&
t1
<
len
)
?
t1
:
0
;
#endif
}
...
...
Write
Preview
Supports
Markdown
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