Skip to content
This repository has been archived by the owner on Dec 22, 2021. It is now read-only.

Commit

Permalink
Gah. Strict mode once and for all.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Snare committed Nov 12, 2013
1 parent a207b7b commit 18dc5b9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bin/ejabberd-auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
//
// NodeJS script that implements an authentication daemon for eJabberd.
//
'use strict;';
'use strict';

var assert = require('assert'),
etc = require('etc'),
Expand Down
2 changes: 1 addition & 1 deletion lib/auth-ldap.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2013 Andrew Snare. All rights reserved.
'use strict;';
'use strict';

var ldap = require('ldapjs'),
assert = require('assert'),
Expand Down
2 changes: 1 addition & 1 deletion lib/auth.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2013 Andrew Snare. All rights reserved.
'use strict;'
'use strict';

var events = require('events'),
util = require('util');
Expand Down
2 changes: 1 addition & 1 deletion lib/ejabberd.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Copyright 2013 Andrew Snare. All rights reserved.
'use strict;'
'use strict';

var events = require('events'),
util = require('util');
Expand Down

0 comments on commit 18dc5b9

Please sign in to comment.