Skip to content

Commit

Permalink
dsme uses libdsme to get default socket location. Fixes NEMO#575
Browse files Browse the repository at this point in the history
Signed-off-by: Pekka Lundstrom <pekka.lundstrom@jollamobile.com>
  • Loading branch information
Pekka Lundstrom committed Nov 16, 2012
1 parent dabbaa9 commit b7e300e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
@@ -1,5 +1,5 @@
# Package name and version
AC_INIT(dsme, 0.62.6)
AC_INIT(dsme, 0.62.7)

AM_INIT_AUTOMAKE

Expand Down
2 changes: 1 addition & 1 deletion dsme/dsmesock.c
Expand Up @@ -77,7 +77,7 @@ int dsmesock_listen(dsmesock_callback* read_and_queue)

dsmesock_filename = getenv("DSME_SOCKFILE");
if (dsmesock_filename == 0 || *dsmesock_filename == '\0') {
dsmesock_filename = "/tmp/dsmesock";
dsmesock_filename = dsmesock_default_location;
}

memset(&laddr, 0, sizeof(laddr));
Expand Down

0 comments on commit b7e300e

Please sign in to comment.