Displaying 20 results from an estimated 140 matches for "shortnam".
Did you mean:
shortname
2012 Jul 14
6
[PATCH 0/6] Allow non-optargs functions to gain optional arguments.
This rather complex set of patches allow non-optargs functions to gain
optional arguments, while preserving source and binary backwards
compatibility.
The problem is that we cannot add an optional argument to an existing
function. For example, we might want to add flags to the 'lvresize'
API which currently has no optional arguments.
2012 Jan 17
2
[PATCH 1/2] c: NFC Remove redundant parentheses
...ions(+), 1 deletions(-)
diff --git a/generator/generator_c.ml b/generator/generator_c.ml
index 4324ec0..9cfb2b7 100644
--- a/generator/generator_c.ml
+++ b/generator/generator_c.ml
@@ -1187,7 +1187,7 @@ trace_send_line (guestfs_h *g)
let n = name_of_optargt argt in
let uc_shortname = String.uppercase shortname in
let uc_n = String.uppercase n in
- pr " if ((optargs->bitmask & GUESTFS_%s_%s_BITMASK))\n"
+ pr " if (optargs->bitmask & GUESTFS_%s_%s_BITMASK)\n"
uc_shortname uc_n;
(...
2020 Feb 09
3
[draft PATCH] whitelist support for refuse options
...+++++++++++++++++++++++++++---------------
1 file changed, 82 insertions(+), 32 deletions(-)
diff --git a/options.c b/options.c
index e5b0cb68..02d1b174 100644
--- a/options.c
+++ b/options.c
@@ -1133,39 +1133,101 @@ static void set_refuse_options(char *bp)
{
struct poptOption *op;
char *cp, shortname[2];
- int is_wild, found_match;
+ int is_wild, found_match, whitelist_mode, archive_whitelisted;
shortname[1] = '\0';
+ whitelist_mode = 0;
+ archive_whitelisted = 0;
+ /* We flag options for refusal by abusing the "descrip" field of
+ * struct poptOption (which we don'...
2020 Mar 03
6
Upgrade 4.9 -> 4.11 oups
Hello !
I decided to upgrade my fileservers from stretch/samba 4.9 to buster/samba 4.11
I just realized that smbd is not working anymore :-/
If someone has an idea It would be amazing... as an idiot, I upgraded my 20 servers.... without snapshot....
Thank you so much
Here's some logs :
root at ef113:~# tail /var/log/samba/log.smbd
#1
2006 Mar 14
4
has_one
I''ve got an order model that stores order data.
One piece of data is a credit card type, which is a digit 1,2 or 3.
I have a cardType model that has an id, shortName and LongName for the
credit card merchant (visa, mastercard, amex).
I want to be able to say: order.cardType.shortName, but can''t seem to
get has_one working. It works with has_many and a finder_sql statement
on it, but that returns an array, so I have to access it like this:
order.c...
2014 Jan 10
1
samba 4.1.3 -- multiple bugs & 1, 297 coredumps -- coredump backtrace + full-backtrace included
...gt;
Fork = true
no_process_group = 208
log_stdout = <optimized out>
ports = 0x0
profile_level = 0x0
opt = <optimized out>
pc = <optimized out>
print_build_options = 80
long_options = {{longName = 0x0, shortName = 0 '\000', argInfo = 4,
arg = 0x7f6cb3089400 <poptHelpOptions>, val = 0,
descrip = 0x7f6cb5c4d1f2 "Help options:", argDescrip = 0x0}, {
longName = 0x7f6cb5c4d200 "daemon", shortName = 68 'D',
argInfo...
2015 Sep 15
3
[PATCH 3/3] python: Allow bindings to be compiled with different version of libguestfs (RHBZ#1262983).
Patch to fix:
https://bugzilla.redhat.com/show_bug.cgi?id=1262983
Note this won't help until the first two patches get backported to the
stable branches, since <guestfs.h> won't define the necessary
GUESTFS_HAVE_* macros.
Rich.
2012 Apr 26
1
[PATCH 1/2] gobject: Use generator_built macro to ensure generated files are rebuilt properly.
From: "Richard W.M. Jones" <rjones at redhat.com>
---
generator/generator_gobject.ml | 4 ++--
gobject/Makefile.am | 14 +++++++++-----
gobject/Makefile.inc | 4 ++--
3 files changed, 13 insertions(+), 9 deletions(-)
diff --git a/generator/generator_gobject.ml b/generator/generator_gobject.ml
index 17c6c36..3096501 100644
---
2004 Feb 04
1
Signal 11 in smbd 3.0.2rc2 on printer operation!
...um_echos = 0
last_timeout_processing_time = 1075937457
num_smbs = 28
total_buffer_size = 132161
#24 0x08256fd7 in main (argc=2, argv=0xbffffe04) at smbd/server.c:887
is_daemon = 1
interactive = 0
Fork = 1
log_stdout = 0
ports = 0x0
opt = -1
pc = 0x82f3f38
long_options = {{longName = 0x0, shortName = 0 '\0', argInfo = 4,
arg = 0x82dd25c, val = 0, descrip = 0x82d3ff3 "Help options",
argDescrip = 0x0}, {longName = 0x82d4000 "daemon", shortName = 68 'D',
argInfo = 7, arg = 0x82dd248, val = 1,
descrip = 0x82d4007 "Become a daemon (defa...
2006 Mar 22
2
Choose.files to give shortnames
Hi
I am writing a script to generate a QC report for some data based on a number of files. I am currently using the choose.files function to select the files as not all the files need to be QC'd. One minor issue is that choose.files returns the complete path of the filename (eg "C:/QCdata/Test1/File01", "C:/QCdata/Test1/File02"...). Is it possible to use choose.files to
2008 Oct 04
2
smbclient kerberos issue
...g Samba 3.2.3 on Debian Lenny, amd64.
I'm joined to an AD realm, authentication works fine for Windows
clients. I'm able to see that the clients are using Kerberos, not NTLM
to authenticate to the shares. However when I look at the keytab, my
entries have the short names like "service/shortname@REALM" instead of
"service/fqdn@REALM". Looking at Windows servers on the same domain it
seems to be a bit of a mix between fqdn and short names with the
majority using short names.
So the problem with that is when I try to use smbclient to connect, I
get a "Server not found i...
2011 Apr 22
1
[LLVMdev] Compile-time evaluation of functions
...o the annotated members.
Now, ProgramArgument is just a regular class that has a constructor that
takes several arguments - in this case, the long name, short name, and help
text. In fact it looks like this:
@Attribute
class ProgramArgument {
private {
let longName:String;
let shortName:String;
let helpText:String;
}
def construct(longName:String, shortName:String="", helpText:String="")
{
self.longName = longName;
self.shortName = shortName;
self.helpText = helpText;
}
}
OK so when we compile the class CommandArgs, we w...
2009 Sep 09
2
[PATCH] Add command trace functionality
...nabled flag",
+ "\
+Return the command trace flag.");
+
]
(* daemon_functions are any functions which cause some action
@@ -4630,6 +4656,52 @@ check_state (guestfs_h *g, const char *caller)
";
+ (* Generate code to generate guestfish call traces. *)
+ let trace_call shortname style =
+ pr " if (guestfs__get_trace (g)) {\n";
+
+ let needs_i =
+ List.exists (function
+ | StringList _ | DeviceList _ -> true
+ | _ -> false) (snd style) in
+ if needs_i then (
+ pr " int i;\n";
+ pr "\n"
+ );
+
+ p...
2016 May 05
2
Samba4 AD DNS -- AD Subdomain vs Clients accessing on different subdomain
...hat we’ve noticed so far) when bound to AD don’t seem to like having the clients pointed at a different DNS name than the samba subdomain. For example:
OS X Server, bound to AD, running SMB file server:
When connecting to fileserver.companyname.com
The user must authenticate as ad.companyname.com\shortname OR
The user must authenticate as shortname at ad.brewerscience.com
Using AD\shortname does not work
When connecting to fileserver.ad.brewerscience.com
The user can authenticate as just short name
Another example:
OS X Server, bound to AD, running Profile Manager:
Users can authenticate to the P...
2018 Jun 25
2
Samba 4.7.1 Generating Core Dumps
...fc2281b5060 <DEBUGLEVEL_CLASS>
print_build_options = <optimized out>
---Type <return> to continue, or q <return> to quit---
main_server_id = {pid = 3226, task_id = 0, vnn = 4294967295, unique_id = 15388926496133788791}
long_options = {{longName = 0x0, shortName = 0 '\000', argInfo = 4, arg = 0x7fc225472320 <poptHelpOptions>, val = 0, descrip = 0x55b48c670773 "Help options:", argDescrip = 0x0}, {
longName = 0x55b48c670781 "daemon", shortName = 68 'D', argInfo = 0, arg = 0x0, val = 1000, descrip = 0x55b...
2018 Jun 08
2
C7, encryption, and clevis
...fixed-address A.B.C.D;
> }
>
> # tricky machine again
> host tricky1 {
> hardware ethernet yy:yy:yy:yy:yy:yy;
> fixed-address A.B.C.D;
> }
>
Hmmm... wonder if it will gag - we don't put the IP in that, that comes
from DNS. The format we use is
host <host <shortname> P hardware ethernet <MAC address>; fixed-address
<fqdn>;}
so if it would work, replace shortname with short and short1?
mark
2005 Apr 01
2
multiple shares names
hi,
i was searching in documentation, but havn't find answer to my
problem..
i've got shares with long (>12 characters) names, which cannot
be changed. on the other hand i need two computers with win98
to see them. can i somehow check versin of connected client and
depends on that change names to shorter ones? (i mean - i want
all computers (with win xp) to see shares as they see now
2009 Jul 16
1
[LLVMdev] [patch] Dotty printer for dependency trees
...the block without the instruction listing
inside. This pass is intended to show the details.
+ template<>
+ struct DOTGraphTraits<DomTreeNode*> : public DefaultDOTGraphTraits {
+ static std::string getNodeLabel(DomTreeNode *Node,
+ DomTreeNode *Graph,
+ bool ShortNames) {
Tabs are forbidden in LLVM. Also, neither "namespace llvm {" nor
"template<>" increase indent level.
+ return DOTGraphTraits<const Function*>::getNodeLabel(
+ (const BasicBlock*) BB, (const Function *) BB->getParent(),
+ ShortNames);
+ }
If you&...
2005 Oct 24
1
rsync and caps on FAT32 disk
hello,
I plan to use rsync for backing up my data to a FAT32 USB disk. I'm running
the last Mandriva linux 2006 and my filesystem is ext8 using UFT-8 charset.
I run into a problem with some of my folders that have full caps names on the
ext3 disk (/home/foo/BAR/ for example).
When rsync creates the folder on the USB disk, it doesn't
create /home/foo/BAR/ but /home/foo/bar/. And then
2011 Aug 29
2
External vfat devices show uppercase filenames, how to change defaults for GNOME desktop?
Hello there!
I've recently switched from Fedora 11 to CentOS6. Now my SD cards
(automatically mounted on plug) contents is displayed as UPPERCASE
filenames.
I well see in mount's man that vfat's shortname option can be set to
either lower, win95, winnt, mixed. OK, that's for entries in /etc/fstab
or when mounting manually.
I'd like to change the defaults for devices that automatically mount in
GNOME.. is this possible?
In gconf-editor, I don't see a storage/ subdir in system/..
Any h...