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
Shawn Webb
libpushover
Commits
7d89128f
Unverified
Commit
7d89128f
authored
Apr 28, 2020
by
Shawn Webb
Browse files
Fix various braino's
Signed-off-by:
Shawn Webb
<
shawn.webb@hardenedbsd.org
>
parent
be73291f
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
7d89128f
...
...
@@ -28,13 +28,13 @@ if (ctx == NULL) {
}
msg = pushover_init_message(NULL);
if (
p
msg == NULL) {
if (msg == NULL) {
errx("Pushover message init failed.");
}
pushover_message_set_dest("Destination token");
pushover_message_set_title("Message title");
pushover_message_set_msg("Message body content");
pushover_message_set_dest(
msg,
"Destination token");
pushover_message_set_title(
msg,
"Message title");
pushover_message_set_msg(
msg,
"Message body content");
pushover_submit_message(ctx, msg);
pushover_free_message(&msg);
...
...
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