Skip to content

Commit

Permalink
Fix erroneous comments
Browse files Browse the repository at this point in the history
  • Loading branch information
62832 committed Mar 18, 2024
1 parent 5512832 commit 469297e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/os/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ namespace os {
const char* getvncconfigdir();

/*
* Get VNC cache directory. On Unix-like systems, this is either:
* Get VNC data directory. On Unix-like systems, this is either:
* - $XDG_DATA_HOME/tigervnc
* - $HOME/.local/share/tigervnc
* On Windows, this is simply %APPDATA%/vnc/.
Expand Down
2 changes: 1 addition & 1 deletion vncviewer/vncviewer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ int main(int argc, char** argv)
migrateDeprecatedOptions();

#ifndef WIN32
// Check if config and state dirs are both the same legacy ~/.vnc dir
// Check if legacy ~/.vnc dir exists and warn the user of its deprecation
struct stat st;
if (stat(os::getvnchomedir(), &st) == 0)
vlog.info(_("~/.vnc is deprecated, please migrate to XDGBDS-compliant paths!"));
Expand Down

0 comments on commit 469297e

Please sign in to comment.