vvfat.c (80d6f5eae79b009bf3e02e59e9e225db42ddf887) | vvfat.c (87ea75d5e135c0527c6a9dbac4317913409f28c7) |
---|---|
1/* vim:set shiftwidth=4 ts=4: */ 2/* 3 * QEMU Block driver for virtual VFAT (shadows a local directory) 4 * 5 * Copyright (c) 2004,2005 Johannes E. Schindelin 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal --- 1069 unchanged lines hidden (view full) --- 1078 vvv = s; 1079#endif 1080 1081DLOG(if (stderr == NULL) { 1082 stderr = fopen("vvfat.log", "a"); 1083 setbuf(stderr, NULL); 1084}) 1085 | 1/* vim:set shiftwidth=4 ts=4: */ 2/* 3 * QEMU Block driver for virtual VFAT (shadows a local directory) 4 * 5 * Copyright (c) 2004,2005 Johannes E. Schindelin 6 * 7 * Permission is hereby granted, free of charge, to any person obtaining a copy 8 * of this software and associated documentation files (the "Software"), to deal --- 1069 unchanged lines hidden (view full) --- 1078 vvv = s; 1079#endif 1080 1081DLOG(if (stderr == NULL) { 1082 stderr = fopen("vvfat.log", "a"); 1083 setbuf(stderr, NULL); 1084}) 1085 |
1086 opts = qemu_opts_create_nofail(&runtime_opts); | 1086 opts = qemu_opts_create(&runtime_opts, NULL, 0, &error_abort); |
1087 qemu_opts_absorb_qdict(opts, options, &local_err); 1088 if (error_is_set(&local_err)) { 1089 qerror_report_err(local_err); 1090 error_free(local_err); 1091 ret = -EINVAL; 1092 goto fail; 1093 } 1094 --- 1933 unchanged lines hidden --- | 1087 qemu_opts_absorb_qdict(opts, options, &local_err); 1088 if (error_is_set(&local_err)) { 1089 qerror_report_err(local_err); 1090 error_free(local_err); 1091 ret = -EINVAL; 1092 goto fail; 1093 } 1094 --- 1933 unchanged lines hidden --- |