diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-04-28 19:29:27 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-04-28 19:29:27 +0200 |
commit | 6c5d983f134ae32eeecb1dd7011e9c955b1bf541 (patch) | |
tree | e993c54cfad7eba6dd15c3693baf0a3b876a9018 /src/xmpp | |
parent | 69a8fdec95c1aef1345972f66e07277510a50983 (diff) | |
download | profani-tty-6c5d983f134ae32eeecb1dd7011e9c955b1bf541.tar.gz |
Rename stamp preference variable
PREF_INCOMING_STR -> PREF_INCOMING_STAMP PREF_OUTGOING_STR -> PREF_OUTGOING_STAMP
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/roster_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/roster_list.c b/src/xmpp/roster_list.c index 5ecff145..a06c44c9 100644 --- a/src/xmpp/roster_list.c +++ b/src/xmpp/roster_list.c @@ -199,7 +199,7 @@ roster_get_msg_display_name(const char* const barejid, const char* const resourc { assert(roster != NULL); - char* incoming_str = prefs_get_string(PREF_INCOMING_STR); + char* incoming_str = prefs_get_string(PREF_INCOMING_STAMP); if (incoming_str) { return incoming_str; |